mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-11 00:17:44 +00:00
This doesn't actually do things like level you up, but if you use the GM EXP command then it will update the UI.
13 lines
279 B
Rust
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,
|
|
}
|