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