#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 { public override void FinishedLaunching(UIApplication app) { // Fun begins.. using (Game1 game = new Game1()) { game.Run(); } } /// /// The main entry point for the application. /// static void Main(string[] args) { UIApplication.Main(args, null, "AppDelegate"); } } #endregion }