2017-01-08 07:56:46 -08:00
|
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
|
2017-01-12 10:23:41 -08:00
|
|
|
|
namespace Facebook.Yoga.Mac.Sample
|
2017-01-08 07:56:46 -08:00
|
|
|
|
{
|
|
|
|
|
static class MainClass
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
NSApplication.Init();
|
|
|
|
|
NSApplication.Main(args);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|