1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 17:08:00 +02:00
Beef/BeefLibs/corlib/src/PlatformID.bf

14 lines
251 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
namespace System
{
public enum PlatformID
{
Win32S = 0,
Win32Windows = 1,
Win32NT = 2,
WinCE = 3,
Unix = 4,
Xbox = 5,
MacOSX = 6
}
}