LeviLamina
Loading...
Searching...
No Matches
DisconnectionStage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Connection {
6
7enum class DisconnectionStage : uint {
8 Unknown = 0,
9 Prerequisites = 1,
10 InitialConnection = 2,
11 ClientDisconnection = 3,
12 ServerDisconnection = 4,
13};
14
15}