Ryuclaw.Mac/Ryuclaw.Client.Mac/AppDelegate.cs

16 lines
370 B
C#
Raw Normal View History

2023-08-25 12:39:31 +00:00
namespace Ryuclaw.Client.Mac;
[Register ("AppDelegate")]
public class AppDelegate : NSApplicationDelegate {
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
}
}