1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-02 03:07:44 +00:00
kawari/src/world/ipc/actor_control_self.rs
Joshua Goins 4927fa9119 Send ActorControl and StatusEffectList packets in vain
This was hopefully supposed to show the player spawned by !spawnactor, but it
still doesn't work...
2025-03-18 23:30:59 -04:00

17 lines
345 B
Rust

use binrw::binrw;
use super::ActorControlCategory;
#[binrw]
#[derive(Debug, Clone, Default)]
pub struct ActorControlSelf {
#[brw(pad_after = 2)]
pub category: ActorControlCategory,
pub param1: u32,
pub param2: u32,
pub param3: u32,
pub param4: u32,
pub param5: u32,
#[brw(pad_after = 4)]
pub param6: u32,
}