Exemple #1
0
 public Process()
 {
     location = START;
     prev_location = START;
     //kwh MUST be created before inv
     kwh = new KeywordHandler(this);
     inv = new Inventory(this);
 }
Exemple #2
0
 public void Restart()
 {
     if(CHEAT)
         location = prev_location;
     else
     {
         location = START;
         prev_location = START;
         //kwh MUST be created before inv
         kwh = new KeywordHandler(this);
         inv = new Inventory(this);
         Console.Clear();
     }
     DisplayRoom();
 }