22 lines
435 B
C#
22 lines
435 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;
|
|||
|
|
|||
|
namespace Facebook.Yoga.Mac.Test
|
|||
|
{
|
|||
|
static class MainClass
|
|||
|
{
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
NSApplication.Init();
|
|||
|
NSApplication.Main(args);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|