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.
12 lines
345 B
C#
12 lines
345 B
C#
namespace MinecraftClient.Protocol.Handlers.Forge
|
|
{
|
|
/// <summary>
|
|
/// Version of the FML protocol
|
|
/// </summary>
|
|
/// <seealso href="https://github.com/MinecraftForge/MinecraftForge/blob/master/src/main/java/net/minecraftforge/fml/network/FMLNetworkConstants.java"/>
|
|
enum FMLVersion
|
|
{
|
|
FML,
|
|
FML2
|
|
}
|
|
}
|