]> git.r.bdr.sh - rbdr/super-polarity/blobdiff - SuperPolarityMac/Main.cs
Removes spaces.
[rbdr/super-polarity] / SuperPolarityMac / Main.cs
diff --git a/SuperPolarityMac/Main.cs b/SuperPolarityMac/Main.cs
deleted file mode 100644 (file)
index f21bf0b..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MonoMac.AppKit;
-using MonoMac.Foundation;
-
-namespace SuperPolarityMac
-{
-       static class Program
-       {
-               /// <summary>
-               /// The main entry point for the application.
-               /// </summary>
-               static void Main (string[] args)
-               {
-                       NSApplication.Init ();
-                       
-                       using (var p = new NSAutoreleasePool ()) {
-                               NSApplication.SharedApplication.Delegate = new AppDelegate ();
-                               NSApplication.Main (args);
-                       }
-
-
-               }
-       }
-
-       class AppDelegate : NSApplicationDelegate
-       {
-               Game1 game;
-
-               public override void FinishedLaunching (MonoMac.Foundation.NSObject notification)
-               {
-                       game = new Game1 ();
-                       game.Run ();
-               }
-
-               public override bool ApplicationShouldTerminateAfterLastWindowClosed (NSApplication sender)
-               {
-                       return true;
-               }
-       }
-}
-
-