Пример #1
0
 static void Main()
 {
     using (var game = new Game1())
         game.Run();
 }
Пример #2
0
 public Dog(Game1 game, Input input, List<Bomb> bombs)
     : this(game)
 {
     this.input = input;
     this.bombs = bombs;
 }