1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-19 03:17:44 +00:00
kawari/src/ipc/zone/weather_change.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

9 lines
179 B
Rust

use binrw::binrw;
#[binrw]
#[derive(Debug, Clone, Copy, Default)]
pub struct WeatherChange {
pub weather_id: u16,
#[brw(pad_before = 2)]
pub transistion_time: f32,
}