mirror of https://github.com/icedream/npsharp.git
12 lines
181 B
C#
12 lines
181 B
C#
|
|
namespace NPSharp.Steam
|
||
|
|
{
|
||
|
|
public enum EUniverse
|
||
|
|
{
|
||
|
|
Invalid = 0,
|
||
|
|
Public = 1,
|
||
|
|
Beta = 2,
|
||
|
|
Internal = 3,
|
||
|
|
Dev = 4,
|
||
|
|
Max = 5,
|
||
|
|
};
|
||
|
|
}
|