chunkedge_protocol/packets/play/
set_experience_s2c.rs1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use crate::Packet;
4#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
5pub struct SetExperienceS2c {
6 pub bar: f32,
7 pub level: VarInt,
8 pub total_xp: VarInt,
9}