]> git.r.bdr.sh - rbdr/super-polarity/blame - SuperPolarityMac/Main.cs
Removes old stuff, adds mac proj
[rbdr/super-polarity] / SuperPolarityMac / Main.cs
CommitLineData
0cafec44
BB
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using MonoMac.AppKit;
5using MonoMac.Foundation;
6
7namespace SuperPolarityMac
8{
9 static class Program
10 {
11 /// <summary>
12 /// The main entry point for the application.
13 /// </summary>
14 static void Main (string[] args)
15 {
16 NSApplication.Init ();
17
18 using (var p = new NSAutoreleasePool ()) {
19 NSApplication.SharedApplication.Delegate = new AppDelegate ();
20 NSApplication.Main (args);
21 }
22
23
24 }
25 }
26
27 class AppDelegate : NSApplicationDelegate
28 {
29 Game1 game;
30
31 public override void FinishedLaunching (MonoMac.Foundation.NSObject notification)
32 {
33 game = new Game1 ();
34 game.Run ();
35 }
36
37 public override bool ApplicationShouldTerminateAfterLastWindowClosed (NSApplication sender)
38 {
39 return true;
40 }
41 }
42}
43
44