mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 09:56:25 +00:00
19 lines
255 B
C#
19 lines
255 B
C#
|
using System;
|
||
|
using System.Drawing;
|
||
|
using MonoMac.Foundation;
|
||
|
using MonoMac.AppKit;
|
||
|
using MonoMac.ObjCRuntime;
|
||
|
|
||
|
namespace Test
|
||
|
{
|
||
|
class MainClass
|
||
|
{
|
||
|
static void Main (string[] args)
|
||
|
{
|
||
|
NSApplication.Init ();
|
||
|
NSApplication.Main (args);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|