Esempio n. 1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (CatapultGame game = new CatapultGame())
     {
         game.Run();
     }
 }
Esempio n. 2
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (CatapultGame game = new CatapultGame())
     {
         game.Run();
     }
 }
Esempio n. 3
0
 public Catapult(Game game)
     : base(game)
 {
     curGame = (CatapultGame)game;
 }
Esempio n. 4
0
        public override void FinishedLaunching(MonoMac.Foundation.NSObject notification)
        {
            CatapultGame game = new CatapultGame();

            game.Run();
        }
Esempio n. 5
0
		public override void FinishedLaunching (MonoMac.Foundation.NSObject notification)
		{
			CatapultGame game = new CatapultGame();
			game.Run ();
		}
Esempio n. 6
0
 public Player(Game game)
     : base(game)
 {
     curGame = (CatapultGame)game;
 }
Esempio n. 7
0
 public Catapult(Game game)
     : base(game)
 {
     curGame = (CatapultGame)game;
 }
Esempio n. 8
0
 public Player(Game game)
     : base(game)
 {
     curGame = (CatapultGame)game;
 }
Esempio n. 9
0
		public override void FinishedLaunching (UIApplication app)
		{
			// Fun begins..
			game = new CatapultGame();
			game.Run();
		}
Esempio n. 10
0
 public SupplyCrate(Game game)
     : base(game)
 {
     curGame = (CatapultGame)game;
 }