예제 #1
0
 public Alien(ShamelessGalagaClone game)
 {
     Game = game;
 }
예제 #2
0
 public Ship(ShamelessGalagaClone game)
 {
     Game = game;
 }
예제 #3
0
 /// <summary>
 /// Creates a bullet
 /// </summary>
 /// <param name="game">The game this bullet belongs to</param>
 public Bullet(ShamelessGalagaClone game)
 {
     this.game = game;
 }
예제 #4
0
 static void Main()
 {
     using (var game = new ShamelessGalagaClone())
         game.Run();
 }