16 lines
205 B
C#
16 lines
205 B
C#
namespace Valve.VR
|
|
{
|
|
public enum EVRState
|
|
{
|
|
Undefined = -1,
|
|
Off = 0,
|
|
Searching = 1,
|
|
Searching_Alert = 2,
|
|
Ready = 3,
|
|
Ready_Alert = 4,
|
|
NotReady = 5,
|
|
Standby = 6,
|
|
Ready_Alert_Low = 7
|
|
}
|
|
}
|