1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using MonoTouch.Foundation;
- using MonoTouch.UIKit;
- namespace RenderTarget2DSample
- {
- #region Entry Point
- [Register("AppDelegate")]
- class Program : UIApplicationDelegate
- {
- public override void FinishedLaunching(UIApplication app)
- {
- // Fun begins..
- using (Game1 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
- }
|