Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/Oculus/Platform/Samples/NetChat/states.cs
2026-02-21 16:45:37 +08:00

16 lines
245 B
C#

namespace Oculus.Platform.Samples.NetChat
{
internal enum states
{
NOT_INIT = 0,
IDLE = 1,
REQUEST_FIND = 2,
FINDING_ROOM = 3,
REQUEST_CREATE = 4,
REQUEST_JOIN = 5,
REQUEST_LEAVE = 6,
IN_EMPTY_ROOM = 7,
IN_FULL_ROOM = 8
}
}