Files
WowUp/WowUp.Mac/AppDelegate.cs
john liddell bc1f0ccc7b add Mac
2020-06-28 23:45:12 -05:00

24 lines
520 B
C#

using AppKit;
using Foundation;
namespace WowUp.Mac
{
[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
}
}
}