LeviLamina
Loading...
Searching...
No Matches
RM3ConstructionState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7enum class RM3ConstructionState : int {
8 SendConstruction = 0,
9 AlreadyExistsRemotely = 1,
10 AlreadyExistsRemotelyDoNotConstruct = 2,
11 NeverConstruct = 3,
12 NoAction = 4,
13 Max = 5,
14};
15
16}