Beispiel #1
0
 public LocationCell(string name, LocationCell owner)
 {
     this.Name = name;
     Owner     = owner;
 }
Beispiel #2
0
 public CellEntrance(int x1, int y1, LocationCell cell) :
     this(new Vector2Int(x1, y1), cell)
 {
 }
Beispiel #3
0
 public CellEntrance(Vector2Int entrance, LocationCell cell)
 {
     Entrance = entrance;
     Cell     = cell;
 }
Beispiel #4
0
 public ActionGoToRoom(GameObject subject, LocationCell cell) : base(subject)
 {
     CellToGo = cell;
 }