mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
* Fix AutoFishing crash * Fix all warnings * Remove DotNetZip. * Fix the usage of HttpClient.
18 lines
549 B
C#
Executable file
18 lines
549 B
C#
Executable file
namespace MinecraftClient.Protocol.Handlers.Forge
|
|
{
|
|
/// <summary>
|
|
/// Copy of the forge enum for client states.
|
|
/// https://github.com/MinecraftForge/MinecraftForge/blob/ebe9b6d4cbc4a5281c386994f1fbda04df5d2e1f/src/main/java/net/minecraftforge/fml/common/network/handshake/FMLHandshakeClientState.java
|
|
/// </summary>
|
|
enum FMLHandshakeClientState : byte
|
|
{
|
|
START,
|
|
HELLO,
|
|
WAITINGSERVERDATA,
|
|
WAITINGSERVERCOMPLETE,
|
|
PENDINGCOMPLETE,
|
|
COMPLETE,
|
|
DONE,
|
|
ERROR
|
|
}
|
|
}
|