123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using MonoTouch.Foundation;
- using MonoTouch.UIKit;
- namespace Flocking
- {
- [Register("AppDelegate")]
- class Program : UIApplicationDelegate
- {
- FlockingSample game;
- public override void FinishedLaunching (UIApplication app)
- {
- // Fun begins..
- game = new FlockingSample ();
- game.Run ();
- }
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- static void Main (string[] args)
- {
- UIApplication.Main (args, null, "AppDelegate");
- }
- }
- }
|