diff options
| author | mat <github@matdoes.dev> | 2021-12-13 00:07:21 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2021-12-13 00:07:21 -0600 |
| commit | c96ae8fce4e53ea9fad111ac7f479f2fa33ef859 (patch) | |
| tree | 2d35061fa712464b225317f56a806d0dd269ca82 /minecraft-protocol/src/packets/handshake | |
| parent | 2c3bf3b79e133acd01580144771a7cf238ecc4ee (diff) | |
| download | azalea-drasl-c96ae8fce4e53ea9fad111ac7f479f2fa33ef859.tar.xz | |
start implementing joining servers
Diffstat (limited to 'minecraft-protocol/src/packets/handshake')
| -rw-r--r-- | minecraft-protocol/src/packets/handshake/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/minecraft-protocol/src/packets/handshake/mod.rs b/minecraft-protocol/src/packets/handshake/mod.rs index 667b00f2..d2716299 100644 --- a/minecraft-protocol/src/packets/handshake/mod.rs +++ b/minecraft-protocol/src/packets/handshake/mod.rs @@ -1 +1,6 @@ pub mod client_intention_packet; + +#[derive(Clone, Debug)] +pub enum HandshakePacket { + ClientIntentionPacket(client_intention_packet::ClientIntentionPacket), +} |
