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