aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/mod.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-12-18 10:11:53 -0600
committermat <github@matdoes.dev>2021-12-18 10:11:53 -0600
commit428d0ee0e643676e47683c7d314cefebd03bf3f1 (patch)
treee866351a18886ed75017ec7fe09e9b3499534c75 /azalea-protocol/src/packets/game/mod.rs
parent8e3ba097b48543a85f2cf487d5db90add3f28bac (diff)
downloadazalea-drasl-428d0ee0e643676e47683c7d314cefebd03bf3f1.tar.xz
mmm registries
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 {