1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-19 19:27:46 +00:00
kawari/src/ipc/zone/weather_change.rs

10 lines
179 B
Rust
Raw Normal View History

use binrw::binrw;
#[binrw]
#[derive(Debug, Clone, Copy, Default)]
pub struct WeatherChange {
pub weather_id: u16,
2025-03-21 19:58:48 -04:00
#[brw(pad_before = 2)]
pub transistion_time: f32,
}