mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
19 lines
331 B
C#
19 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HeliosPlus.GameLibraries.SteamAppInfoParser
|
|
{
|
|
public enum EUniverse
|
|
{
|
|
Invalid = 0,
|
|
Public = 1,
|
|
Beta = 2,
|
|
Internal = 3,
|
|
Dev = 4,
|
|
Max = 5,
|
|
}
|
|
}
|