mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
23 lines
636 B
C#
Executable file
23 lines
636 B
C#
Executable file
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
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
|
|
}
|
|
}
|