1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-11 00:17:44 +00:00
kawari/src/ipc/zone/update_class_info.rs
Joshua Goins fbe6862c7b Begin implementing EXP
This doesn't actually do things like level you up, but if you use the
GM EXP command then it will update the UI.
2025-06-22 09:19:06 -04:00

13 lines
279 B
Rust

use binrw::binrw;
#[binrw]
#[derive(Debug, Clone, Copy, Default)]
pub struct UpdateClassInfo {
pub class_id: u8,
#[brw(pad_before = 1)]
pub current_level: u16,
pub class_level: u16,
pub synced_level: u16,
pub current_exp: u32,
pub rested_exp: u32,
}