├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include └── json.hpp ├── minecraft-headers └── minecraft │ ├── BinaryStream.h │ ├── Biome.h │ ├── BiomeRegistry.h │ ├── Block.h │ ├── BlockLegacy.h │ ├── BlockPalette.h │ ├── BlockSerializationUtils.h │ ├── BlockTypeRegistry.h │ ├── CommandRegistry.h │ ├── CompoundTag.h │ ├── HashedString.h │ ├── Item.h │ ├── ItemDescriptor.h │ ├── ItemRegistry.h │ ├── ItemTag.h │ ├── Level.h │ ├── LevelSoundEventMap.h │ ├── Memory.h │ ├── Minecraft.h │ ├── MinecraftCommands.h │ ├── PrintStream.h │ ├── ReadOnlyBinaryStream.h │ ├── ServerInstance.h │ ├── Tag.h │ ├── VanillaBlockConversion.h │ └── serialize.h └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/README.md -------------------------------------------------------------------------------- /include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/include/json.hpp -------------------------------------------------------------------------------- /minecraft-headers/minecraft/BinaryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/BinaryStream.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/Biome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/Biome.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/BiomeRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/BiomeRegistry.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/Block.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/BlockLegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/BlockLegacy.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/BlockPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/BlockPalette.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/BlockSerializationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/BlockSerializationUtils.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/BlockTypeRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/BlockTypeRegistry.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/CommandRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/CommandRegistry.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/CompoundTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/CompoundTag.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/HashedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/HashedString.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/Item.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/ItemDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/ItemDescriptor.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/ItemRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/ItemRegistry.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/ItemTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/ItemTag.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/Level.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/LevelSoundEventMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/LevelSoundEventMap.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/Memory.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/Minecraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/Minecraft.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/MinecraftCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/MinecraftCommands.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/PrintStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/PrintStream.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/ReadOnlyBinaryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/ReadOnlyBinaryStream.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/ServerInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/ServerInstance.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/Tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/Tag.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/VanillaBlockConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/VanillaBlockConversion.h -------------------------------------------------------------------------------- /minecraft-headers/minecraft/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/minecraft-headers/minecraft/serialize.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmp/bds-mod-mapping/HEAD/src/main.cpp --------------------------------------------------------------------------------