#region Using Statements using System; using MonoTouch.Foundation; using MonoTouch.UIKit; using Microsoft.Xna; using Microsoft.Xna.Framework.Media; #endregion namespace Microsoft.Xna.Samples.MultiTouch { [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"); } } }