31 lines
679 B
C#
31 lines
679 B
C#
![]() |
/**
|
|||
|
* Copyright 2014-present, Facebook, Inc.
|
|||
|
* All rights reserved.
|
|||
|
*
|
|||
|
* This source code is licensed under the license found in the
|
|||
|
* LICENSE-examples file in the root directory of this source tree.
|
|||
|
*/
|
|||
|
|
|||
|
using AppKit;
|
|||
|
using Foundation;
|
|||
|
|
|||
|
namespace Facebook.Yoga.Mac.Test
|
|||
|
{
|
|||
|
[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
|
|||
|
}
|
|||
|
}
|
|||
|
}
|