1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-20 19:57:47 +00:00
kawari/src/world/ipc/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,
#[brw(pad_before = 3)]
pub transistion_time: f32,
}