12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #region File Description
- //-----------------------------------------------------------------------------
- // Program.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System;
- #if IPHONE
- using MonoTouch.Foundation;
- using MonoTouch.UIKit;
- #endif
- #endregion
- namespace Marblets
- {
- [Register ("AppDelegate")]
- class Program : UIApplicationDelegate
- {
- public override void FinishedLaunching (UIApplication app)
- {
- // Fun begins..
- using (MarbletsGame game = new MarbletsGame())
- {
- game.Run();
- }
-
- //MediaLibrary lib = new MediaLibrary();
- //object result = lib.Playlists;
- }
- static void Main (string [] args)
- {
- UIApplication.Main (args,null,"AppDelegate");
- }
- }
- }
|