1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #region File Description
- //-----------------------------------------------------------------------------
- // Program.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System;
- using MonoTouch.Foundation;
- using MonoTouch.UIKit;
- #endregion
- namespace TouchGestureSample
- {
- #region Entry Point
- [Register("AppDelegate")]
- class Program : UIApplicationDelegate
- {
- Game1 game;
- public override void FinishedLaunching(UIApplication app)
- {
- // Fun begins..
- game = new Game1();
- game.Run();
- }
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- static void Main(string[] args)
- {
- UIApplication.Main(args, null, "AppDelegate");
- }
- }
- #endregion
- }
|