LeviLamina
Loading...
Searching...
No Matches
Replica3P2PMode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7enum class Replica3P2PMode : int {
8 SingleOwner = 0,
9 MultiOwnerCurrentlyAuthoritative = 1,
10 MultiOwnerNotCurrentlyAuthoritative = 2,
11 StaticObjectCurrentlyAuthoritative = 3,
12 StaticObjectNotCurrentlyAuthoritative = 4,
13};
14
15}