Esempio n. 1
0
File: World.cs Progetto: Foxion7/AI
 public void Reset()
 {
     _goblins = new List <MovingEntity>();
     _goblinSpace.EmptyCells();
     _hobgoblins = new List <MovingEntity>();
     _corpses    = new List <Corpse>();
     _obstacles  = new List <IObstacle>();
     _walls      = new List <IWall>();
     SpawnObstacles();
     SpawnWalls();
     populate();
 }