Beispiel #1
0
 public Naru(GameModel game, int x, int y) : this(game, new Point(x, y))
 {
 }
Beispiel #2
0
 public Hana(GameModel game, int x, int y) : this(game, new Point(x, y))
 {
 }
Beispiel #3
0
 public Exit(GameModel game, Point position) : base(game, position)
 {
     Drawer  = new BasicDrawer(Sprite, CollectImage);
     IsRigid = true;
 }
Beispiel #4
0
 public Snake(GameModel game, Tuple <Point, Point, Point, Point> snakePosition) : this(game, snakePosition.Item1, snakePosition.Item2, snakePosition.Item3, snakePosition.Item4)
 {
 }
Beispiel #5
0
 public Exit(GameModel game, int x, int y) : this(game, new Point(x, y))
 {
 }