2016-12-08 09:41:59 -06:00
|
|
|
|
using AppKit;
|
|
|
|
|
using Foundation;
|
|
|
|
|
|
|
|
|
|
namespace Facebook.Yoga.Mac.Test
|
|
|
|
|
{
|
2017-01-06 14:29:20 -06:00
|
|
|
|
[Register("AppDelegate")]
|
|
|
|
|
public class AppDelegate : NSApplicationDelegate
|
|
|
|
|
{
|
|
|
|
|
public AppDelegate()
|
|
|
|
|
{
|
|
|
|
|
}
|
2016-12-08 09:41:59 -06:00
|
|
|
|
|
2017-01-06 14:29:20 -06:00
|
|
|
|
public override void DidFinishLaunching(NSNotification notification)
|
|
|
|
|
{
|
|
|
|
|
}
|
2016-12-08 09:41:59 -06:00
|
|
|
|
|
2017-01-06 14:29:20 -06:00
|
|
|
|
public override void WillTerminate(NSNotification notification)
|
|
|
|
|
{
|
|
|
|
|
// Insert code here to tear down your application
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-08 09:41:59 -06:00
|
|
|
|
}
|