Esempio n. 1
0
 public Cell this[MazePoint point] => cells[point.Line][point.Column];
Esempio n. 2
0
 public void AddObject(BaseGameObject @object, MazePoint position)
 {
     AddObject(@object, position.Line, position.Column);
 }
Esempio n. 3
0
 public Human(MazePoint point) : base(point)
 {
 }
Esempio n. 4
0
 public LiveGameObject(MazePoint point) : this(point.Line, point.Column)
 {
 }
Esempio n. 5
0
 public BaseGameObject(MazePoint point)
 {
     ObjectID  = Guid.NewGuid();
     CurAddres = point;
 }
Esempio n. 6
0
 public BaseGameObject(int line, int column)
 {
     ObjectID  = Guid.NewGuid();
     CurAddres = new MazePoint(line, column);
 }