fix: Make all client packet members public. (#1125)

This commit is contained in:
Connor
2025-08-14 07:52:12 +00:00
committed by GitHub
parent c4f922d27c
commit 71dd912eb1
81 changed files with 262 additions and 262 deletions

View File

@@ -5,9 +5,9 @@ use serde::Serialize;
#[derive(Serialize)]
#[packet(PLAY_PLAYER_ABILITIES)]
pub struct CPlayerAbilities {
flags: i8,
flying_speed: f32,
field_of_view: f32,
pub flags: i8,
pub flying_speed: f32,
pub field_of_view: f32,
}
impl CPlayerAbilities {