aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/login/clientbound_hello_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/login/clientbound_hello_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/login/clientbound_hello_packet.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/azalea-protocol/src/packets/login/clientbound_hello_packet.rs b/azalea-protocol/src/packets/login/clientbound_hello_packet.rs
deleted file mode 100755
index 9beb499c..00000000
--- a/azalea-protocol/src/packets/login/clientbound_hello_packet.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-use azalea_buf::McBuf;
-use azalea_protocol_macros::ClientboundLoginPacket;
-
-#[derive(Clone, Debug, McBuf, ClientboundLoginPacket)]
-pub struct ClientboundHelloPacket {
- // TODO: make this len thing work
- // #[len(20)]
- pub server_id: String,
- pub public_key: Vec<u8>,
- pub challenge: Vec<u8>,
- pub should_authenticate: bool,
-}