mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
8 lines
207 B
C#
8 lines
207 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace MinecraftClient.Mapping;
|
||
|
|
|
||
|
|
public abstract class EntityMetadataPalette
|
||
|
|
{
|
||
|
|
public abstract Dictionary<int, EntityMetaDataType> GetEntityMetadataMappingsList();
|
||
|
|
}
|