mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
15 lines
308 B
C#
15 lines
308 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|