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

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