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