aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_mount_screen_open.rs
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2025-12-09 11:23:45 -0600
committerGitHub <noreply@github.com>2025-12-09 11:23:45 -0600
commit84cd261118c9d1e3145d4d1751c0d22098cd8cd8 (patch)
treef9beeb5697a4b895423ef24989044fca8afc5594 /azalea-protocol/src/packets/game/c_mount_screen_open.rs
parent676707aab320339b4c7406ee4f494b530f44e926 (diff)
downloadazalea-drasl-84cd261118c9d1e3145d4d1751c0d22098cd8cd8.tar.xz
1.21.11 (#273)
* run codegen for 25w44a * 25w44a * 25w46a * rename ResourceLocation to Identifier per mojmap changes * update changelog * 1.21.11-pre1 * 1.21.11-pre2 * 1.21.11-pre3 * add AttackRange fields from pre4 * 1.21.11-rc3 * 1.21.11
Diffstat (limited to 'azalea-protocol/src/packets/game/c_mount_screen_open.rs')
-rw-r--r--azalea-protocol/src/packets/game/c_mount_screen_open.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/c_mount_screen_open.rs b/azalea-protocol/src/packets/game/c_mount_screen_open.rs
new file mode 100644
index 00000000..6669d8c1
--- /dev/null
+++ b/azalea-protocol/src/packets/game/c_mount_screen_open.rs
@@ -0,0 +1,12 @@
+use azalea_buf::AzBuf;
+use azalea_protocol_macros::ClientboundGamePacket;
+use azalea_world::MinecraftEntityId;
+
+#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
+pub struct ClientboundMountScreenOpen {
+ #[var]
+ pub container_id: i32,
+ #[var]
+ pub inventory_columns: u32,
+ pub entity_id: MinecraftEntityId,
+}