mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-20 19:57:47 +00:00
10 lines
179 B
Rust
10 lines
179 B
Rust
|
use binrw::binrw;
|
||
|
|
||
|
#[binrw]
|
||
|
#[derive(Debug, Clone, Copy, Default)]
|
||
|
pub struct WeatherChange {
|
||
|
pub weather_id: u16,
|
||
|
#[brw(pad_before = 3)]
|
||
|
pub transistion_time: f32,
|
||
|
}
|