aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/mod.rs')
-rw-r--r--azalea-protocol/src/packets/game/mod.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/mod.rs b/azalea-protocol/src/packets/game/mod.rs
index 73f66c33..932435d9 100644
--- a/azalea-protocol/src/packets/game/mod.rs
+++ b/azalea-protocol/src/packets/game/mod.rs
@@ -8,7 +8,10 @@ use tokio::io::BufReader;
#[derive(Clone, Debug)]
pub enum GamePacket
where
- Self: Sized, {}
+ Self: Sized,
+{
+ ClientboundLoginPacket(clientbound_login_packet::ClientboundLoginPacket),
+}
#[async_trait]
impl ProtocolPacket for GamePacket {