mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
parent
03023c8059
commit
bc3d6aba00
15 changed files with 1005 additions and 41 deletions
|
|
@ -6,9 +6,9 @@ using System.IO;
|
|||
namespace MinecraftClient.Mapping.BlockPalettes
|
||||
{
|
||||
/// <summary>
|
||||
/// Generator for MCC Palette mappings
|
||||
/// Generator for MCC Block Palette mappings
|
||||
/// </summary>
|
||||
public static class PaletteGenerator
|
||||
public static class BlockPaletteGenerator
|
||||
{
|
||||
/// <summary>
|
||||
/// Generate mapping from Minecraft blocks.jsom
|
||||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
|
||||
namespace MinecraftClient.Mapping.BlockPalettes
|
||||
{
|
||||
public abstract class PaletteMapping
|
||||
public abstract class BlockPaletteMapping
|
||||
{
|
||||
/// <summary>
|
||||
/// Get mapping dictionary. Must be overriden with proper implementation.
|
||||
|
|
@ -9,7 +9,7 @@ namespace MinecraftClient.Mapping.BlockPalettes
|
|||
/// Some blocks previously had different IDs depending on state, they have been merged here
|
||||
/// Comments correspond to changed material names since previous MCC versions
|
||||
/// </summary>
|
||||
public class Palette112 : PaletteMapping
|
||||
public class Palette112 : BlockPaletteMapping
|
||||
{
|
||||
private static Dictionary<int, Material> materials = new Dictionary<int, Material>()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ namespace MinecraftClient.Mapping.BlockPalettes
|
|||
{
|
||||
/// <summary>
|
||||
/// Defines mappings for Minecraft 1.13.
|
||||
/// Automatically generated using PaletteGenerator.cs
|
||||
/// Automatically generated using BlockPaletteGenerator.cs
|
||||
/// </summary>
|
||||
public class Palette113 : PaletteMapping
|
||||
public class Palette113 : BlockPaletteMapping
|
||||
{
|
||||
private static Dictionary<int, Material> materials = new Dictionary<int, Material>();
|
||||
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ namespace MinecraftClient.Mapping.BlockPalettes
|
|||
{
|
||||
/// <summary>
|
||||
/// Defines mappings for Minecraft 1.14.
|
||||
/// Automatically generated using PaletteGenerator.cs
|
||||
/// Automatically generated using BlockPaletteGenerator.cs
|
||||
/// </summary>
|
||||
public class Palette114 : PaletteMapping
|
||||
public class Palette114 : BlockPaletteMapping
|
||||
{
|
||||
private static Dictionary<int, Material> materials = new Dictionary<int, Material>();
|
||||
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ namespace MinecraftClient.Mapping.BlockPalettes
|
|||
{
|
||||
/// <summary>
|
||||
/// Defines mappings for Minecraft 1.15.
|
||||
/// Automatically generated using PaletteGenerator.cs
|
||||
/// Automatically generated using BlockPaletteGenerator.cs
|
||||
/// </summary>
|
||||
public class Palette115 : PaletteMapping
|
||||
public class Palette115 : BlockPaletteMapping
|
||||
{
|
||||
private static Dictionary<int, Material> materials = new Dictionary<int, Material>();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue