add server.mac project

This commit is contained in:
Luke
2014-11-21 12:08:50 -05:00
parent 27088b7bac
commit 4ef10753df
11 changed files with 4548 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Drawing;
using MonoMac.Foundation;
using MonoMac.AppKit;
using MonoMac.ObjCRuntime;
namespace MediaBrowser.Server.Mac
{
public partial class AppDelegate : NSApplicationDelegate
{
MainWindowController mainWindowController;
public AppDelegate ()
{
}
public override void FinishedLaunching (NSObject notification)
{
mainWindowController = new MainWindowController ();
mainWindowController.Window.MakeKeyAndOrderFront (this);
}
}
}