Exemplo n.º 1
0
Arquivo: World.cs Projeto: 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();
 }