Ejemplo n.º 1
0
 public Nest(Location l)
 {
     _location = l;
     _ants     = new List <Ant>();
     _size     = 8;
     _layer    = Renderer.Layer.Back;
 }
Ejemplo n.º 2
0
 public Pheromone(Location location, int strength)
 {
     _size = strength * _sizeFactor;
     _location = location;
     _layer = Renderer.Layer.Mid;
 }
Ejemplo n.º 3
0
 public Food(Location l)
 {
     _location = l;
     _size     = GameLogic.Random.Next(20, 75);
     _layer    = Renderer.Layer.Back;
 }
Ejemplo n.º 4
0
 public Creature(Location l, int size)
 {
     _location = l;
     _layer    = Renderer.Layer.Front;
     _size     = size;
 }