mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-12 00:37:46 +00:00
These were kind of scattered everywhere, instead we should move them into their own module. Kawari's custom IPC is moved here too.
10 lines
192 B
Rust
10 lines
192 B
Rust
use binrw::binrw;
|
|
|
|
#[binrw]
|
|
#[derive(Debug, Clone, Copy, Default)]
|
|
pub struct StatusEffect {
|
|
pub effect_id: u16,
|
|
pub param: u16,
|
|
pub duration: f32,
|
|
pub source_actor_id: u32,
|
|
}
|