Ejemplo n.º 1
0
 public MazeObject(IInteractionType i)
 {
     _surroundings = new Surroundings();
     _discovered = false;
     _interaction = i;
     _position = new Position(0, 0);
 }
Ejemplo n.º 2
0
 public void SetPosition(Position p)
 {
     _position = p;
 }