mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-28 09:27:45 +00:00
11 lines
176 B
Rust
11 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,
|
||
|
}
|