skiasharp/samples/Basic/macOS/SkiaSharpSample/AppDelegate.cs
2018-01-29 17:26:14 +02:00

19 lines
416 B
C#

using AppKit;
using Foundation;
namespace SkiaSharpSample
{
[Register(nameof(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
}
}
}