Files
2025-01-25 04:38:09 +08:00

15 lines
576 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Thousandto.Update.Platform
{
public enum MyRuntimePlatform
{
None, //初始值如果是初始值则表示不是通过Launcher启动的
AndroidEditor, //编辑器下,安卓环境
IOSEditor, //编辑器下IOS环境
StandaloneEditor, //编辑器下windows环境
Android, //移动平台,安卓环境
IOS, //移动平台ios环境
Standalone, //桌面平台Windows环境
WebGL, //Web平台
}
}