Esempio n. 1
0
 public Location(int x, int y, Level level)
     : this(new Point(x, y), level)
 {
 }
Esempio n. 2
0
 public GameObject(int x, int y, Level level)
     : this(new Point(x, y), level)
 {
 }
Esempio n. 3
0
 public Location(Point position, Level level)
 {
     Point = position;
     Level = level;
 }
Esempio n. 4
0
 public GameObject(Point position, Level level)
 {
     Location = position;
     Level    = level;
 }