Ejemplo n.º 1
0
 public MazeObject(IInteractionType i)
 {
     _surroundings = new Surroundings();
     _discovered = false;
     _interaction = i;
     _position = new Position(0, 0);
 }
Ejemplo n.º 2
0
 protected MazeObject()
 {
     _surroundings = new Surroundings();
     _discovered = false;
 }
Ejemplo n.º 3
0
 private void ResetPosition()
 {
     _surroundings = new Surroundings();
 }
Ejemplo n.º 4
0
 public MazeNodeObject(MazeObject mo)
 {
     _occupiedBy = mo;
     _surroundings = new Surroundings();
 }