示例#1
0
文件: Location.cs 项目: qmhoang/SKR
 public Location(int x, int y, Level level)
     : this(new Point(x, y), level)
 {
 }
示例#2
0
文件: GameObject.cs 项目: qmhoang/SKR
 public GameObject(int x, int y, Level level)
     : this(new Point(x, y), level)
 {
 }
示例#3
0
文件: Location.cs 项目: qmhoang/SKR
 public Location(Point position, Level level)
 {
     Point = position;
     Level = level;
 }
示例#4
0
文件: GameObject.cs 项目: qmhoang/SKR
 public GameObject(Point position, Level level)
 {
     Location = position;
     Level    = level;
 }