aboutsummaryrefslogtreecommitdiff
path: root/azalea-registry/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-05-04 20:38:10 +0000
committermat <github@matdoes.dev>2023-05-04 20:38:10 +0000
commitc7a923ccc8ae825deca62ac2cc8c80c01484d5b6 (patch)
tree787c6eb579d0b126f0e9dfa161bdea758fe9aa0a /azalea-registry/src
parentff6d43458cef8ac6a23e6e8accd4b71c2a04aef6 (diff)
parent634cb8d72c6608512aedba19e5cd669104bc35ea (diff)
downloadazalea-drasl-c7a923ccc8ae825deca62ac2cc8c80c01484d5b6.tar.xz
merge main
Diffstat (limited to 'azalea-registry/src')
-rwxr-xr-xazalea-registry/src/lib.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/azalea-registry/src/lib.rs b/azalea-registry/src/lib.rs
index 2467ecf9..e1188216 100755
--- a/azalea-registry/src/lib.rs
+++ b/azalea-registry/src/lib.rs
@@ -5449,3 +5449,32 @@ enum CreativeModeTab {
Inventory => "minecraft:inventory",
}
}
+
+registry! {
+enum MenuKind {
+ Generic9x1 => "minecraft:generic_9x1",
+ Generic9x2 => "minecraft:generic_9x2",
+ Generic9x3 => "minecraft:generic_9x3",
+ Generic9x4 => "minecraft:generic_9x4",
+ Generic9x5 => "minecraft:generic_9x5",
+ Generic9x6 => "minecraft:generic_9x6",
+ Generic3x3 => "minecraft:generic_3x3",
+ Anvil => "minecraft:anvil",
+ Beacon => "minecraft:beacon",
+ BlastFurnace => "minecraft:blast_furnace",
+ BrewingStand => "minecraft:brewing_stand",
+ Crafting => "minecraft:crafting",
+ Enchantment => "minecraft:enchantment",
+ Furnace => "minecraft:furnace",
+ Grindstone => "minecraft:grindstone",
+ Hopper => "minecraft:hopper",
+ Lectern => "minecraft:lectern",
+ Loom => "minecraft:loom",
+ Merchant => "minecraft:merchant",
+ ShulkerBox => "minecraft:shulker_box",
+ Smithing => "minecraft:smithing",
+ Smoker => "minecraft:smoker",
+ CartographyTable => "minecraft:cartography_table",
+ Stonecutter => "minecraft:stonecutter",
+}
+}