aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/handshaking/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/handshaking/mod.rs')
-rwxr-xr-xazalea-protocol/src/packets/handshaking/mod.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/handshaking/mod.rs b/azalea-protocol/src/packets/handshaking/mod.rs
new file mode 100755
index 00000000..f2e8810e
--- /dev/null
+++ b/azalea-protocol/src/packets/handshaking/mod.rs
@@ -0,0 +1,11 @@
+pub mod client_intention_packet;
+
+use azalea_protocol_macros::declare_state_packets;
+
+declare_state_packets!(
+ HandshakePacket,
+ Serverbound => {
+ 0x00: client_intention_packet::ClientIntentionPacket,
+ },
+ Clientbound => {}
+);