2022-10-04 13:59:32 -07:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2017-01-08 07:56:46 -08:00
|
|
|
|
*
|
2022-10-04 13:59:32 -07:00
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-01-08 07:56:46 -08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using AppKit;
|
|
|
|
|
using Foundation;
|
|
|
|
|
|
2017-01-12 10:23:41 -08:00
|
|
|
|
namespace Facebook.Yoga.Mac.Sample
|
2017-01-08 07:56:46 -08:00
|
|
|
|
{
|
|
|
|
|
[Register("AppDelegate")]
|
|
|
|
|
public class AppDelegate : NSApplicationDelegate
|
|
|
|
|
{
|
|
|
|
|
public AppDelegate()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void DidFinishLaunching(NSNotification notification)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void WillTerminate(NSNotification notification)
|
|
|
|
|
{
|
|
|
|
|
// Insert code here to tear down your application
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|