1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-12 00:37:46 +00:00
kawari/src/ipc/zone/status_effect.rs
Joshua Goins 5111a38424 Re-organize IPC segments into the ipc module
These were kind of scattered everywhere, instead we should move them
into their own module. Kawari's custom IPC is moved here too.
2025-05-02 00:47:11 -04:00

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,
}