28 lines
595 B
C#
28 lines
595 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using MonoTouch.Foundation;
|
|
using MonoTouch.UIKit;
|
|
|
|
namespace Rouble
|
|
{
|
|
[Register ("AppDelegate")]
|
|
public partial class AppDelegate : UIApplicationDelegate
|
|
{
|
|
private UIWindow _window;
|
|
private MainController _mainController;
|
|
|
|
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
|
|
{
|
|
_window = new UIWindow (UIScreen.MainScreen.Bounds);
|
|
_mainController = new MainController ();
|
|
|
|
_window.RootViewController = _mainController;
|
|
_window.MakeKeyAndVisible ();
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|