mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
* Major grammar sweep * Remove extra backtick * Use more specific terminology for chunk data storage * Forgor to cargofmt * Fix typo "thier" * Fix typo "clousures" * Try new terminology * Forgor to cargofmt * Use "Subchunks" instead of "Heterogeneous" for ChunkBlocks variant * Fix variable name * Forgor to change comment
9 lines
274 B
Rust
9 lines
274 B
Rust
use pumpkin_data::packet::serverbound::LOGIN_LOGIN_ACKNOWLEDGED;
|
|
use pumpkin_macros::packet;
|
|
use serde::Serialize;
|
|
|
|
/// Acknowledgement to the `CLoginSuccess` packet sent by the server.
|
|
#[derive(Serialize)]
|
|
#[packet(LOGIN_LOGIN_ACKNOWLEDGED)]
|
|
pub struct SLoginAcknowledged;
|