LeviLamina
Loading...
Searching...
No Matches
ReadyEventSystemStatus.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7enum class ReadyEventSystemStatus : int {
8 NotWaiting = 0,
9 Waiting = 1,
10 Ready = 2,
11 AllReady = 3,
12 UnknownEvent = 4,
13};
14
15}