aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_client_command_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/serverbound_client_command_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/serverbound_client_command_packet.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/azalea-protocol/src/packets/game/serverbound_client_command_packet.rs b/azalea-protocol/src/packets/game/serverbound_client_command_packet.rs
deleted file mode 100755
index 2f360cb9..00000000
--- a/azalea-protocol/src/packets/game/serverbound_client_command_packet.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-use azalea_buf::McBuf;
-use azalea_protocol_macros::ServerboundGamePacket;
-
-#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
-pub struct ServerboundClientCommandPacket {
- pub action: Action,
-}
-
-#[derive(McBuf, Clone, Copy, Debug)]
-pub enum Action {
- PerformRespawn = 0,
- RequestStats = 1,
-}