mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-19 03:17:44 +00:00
These were kind of scattered everywhere, instead we should move them into their own module. Kawari's custom IPC is moved here too.
9 lines
179 B
Rust
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,
|
|
}
|