12 lines
242 B
C#
12 lines
242 B
C#
namespace Steamworks
|
|
{
|
|
public enum EAppReleaseState
|
|
{
|
|
k_EAppReleaseState_Unknown = 0,
|
|
k_EAppReleaseState_Unavailable = 1,
|
|
k_EAppReleaseState_Prerelease = 2,
|
|
k_EAppReleaseState_PreloadOnly = 3,
|
|
k_EAppReleaseState_Released = 4
|
|
}
|
|
}
|