mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-25 16:30:06 -04:00
24 lines
520 B
C#
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
|
|
}
|
|
}
|
|
}
|