namespace TinaX
{
public enum XRuntimePlatform
{
///
/// Microsoft Windows (Desktop)
///
Windows = 0,
///
/// Microsoft Universal Windows Platform (UWP)
///
UniversalWindowsPlatform = 1,
///
/// GNU Linux
///
Linux = 2,
///
/// Apple OSX
///
OSX = 3,
///
/// Apple iOS
///
iOS = 4,
///
/// Google Android
///
Android = 5,
///
/// Microsoft xbox
///
XBox = 6,
///
/// Sony Playstation 4
///
PS4 = 7,
///
/// Nintendo Switch
///
NSwitch = 8,
Windows32 = 9,
}
}