//------------------------------------------------------------ // Game Framework // Copyright © 2013-2021 loyalsoft. All rights reserved. // Homepage: http://www.game7000.com/ // Feedback: http://www.game7000.com/ //------------------------------------------------------------ using System; namespace UnityGameFramework.Editor.ResourceTools { [Flags] public enum Platform : int { Undefined = 0, /// /// Windows 32 位。 /// Windows = 1 << 0, /// /// Windows 64 位。 /// Windows64 = 1 << 1, /// /// macOS。 /// MacOS = 1 << 2, /// /// Linux。 /// Linux = 1 << 3, /// /// iOS。 /// IOS = 1 << 4, /// /// Android。 /// Android = 1 << 5, /// /// Windows Store。 /// WindowsStore = 1 << 6, /// /// WebGL。 /// WebGL = 1 << 7, } }