19 lines
276 B
C#
19 lines
276 B
C#
|
using System;
|
|||
|
using System.Drawing;
|
|||
|
using MonoMac.Foundation;
|
|||
|
using MonoMac.AppKit;
|
|||
|
using MonoMac.ObjCRuntime;
|
|||
|
|
|||
|
namespace MediaBrowser.Server.Mac
|
|||
|
{
|
|||
|
class MainClass
|
|||
|
{
|
|||
|
static void Main (string[] args)
|
|||
|
{
|
|||
|
NSApplication.Init ();
|
|||
|
NSApplication.Main (args);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|