Files
TEngine/Assets/GameScripts/DotNet/Core/Define.cs
ALEXTANG 0c8f3a5f92 [+] TEngineServer
[+] TEngineServer
2023-07-13 17:17:26 +08:00

11 lines
219 B
C#

#if TENGINE_NET
#pragma warning disable CS8618
namespace TEngine
{
public static class Define
{
public static CommandLineOptions Options;
public static uint AppId => Options.AppId;
}
}
#endif