mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 08:58:00 +02:00
13 lines
251 B
Beef
13 lines
251 B
Beef
namespace System
|
|
{
|
|
public enum PlatformID
|
|
{
|
|
Win32S = 0,
|
|
Win32Windows = 1,
|
|
Win32NT = 2,
|
|
WinCE = 3,
|
|
Unix = 4,
|
|
Xbox = 5,
|
|
MacOSX = 6
|
|
}
|
|
}
|