15 lines
308 B
C#
Raw Normal View History

2020-09-10 16:14:15 +02:00
using AppKit;
namespace Borepin.macOS
{
static class MainClass
{
static void Main(string[] args)
{
NSApplication.Init();
NSApplication.SharedApplication.Delegate = new AppDelegate(); // add this line
NSApplication.Main(args);
}
}
}