Cauldron/Papercut.Macos/AppDelegate.cs

23 lines
424 B
C#
Raw Normal View History

2023-07-19 19:30:39 +00:00
using AppKit;
using Foundation;
namespace Papercut.Macos;
[Register("AppDelegate")]
public class AppDelegate : NSApplicationDelegate
{
public AppDelegate()
{
}
public override void DidFinishLaunching(NSNotification notification)
{
// Insert code here to initialize your application
}
public override void WillTerminate(NSNotification notification)
{
// Insert code here to tear down your application
}
}