mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-27 17:07:46 +00:00
10 lines
176 B
Rust
10 lines
176 B
Rust
use binrw::binrw;
|
|
|
|
#[binrw]
|
|
#[derive(Debug, Clone, Copy, Default)]
|
|
pub struct StatusEffect {
|
|
effect_id: u16,
|
|
param: u16,
|
|
duration: f32,
|
|
source_actor_id: u32,
|
|
}
|