24 lines
248 B
Rust
24 lines
248 B
Rust
|
|
||
|
|
||
|
pub struct EDH {
|
||
|
pub matrix: Matrix3
|
||
|
}
|
||
|
|
||
|
#[derive(Debug, Default )]
|
||
|
impl EDH {
|
||
|
|
||
|
}
|
||
|
|
||
|
pub struct WorldState {
|
||
|
pub edh: EDH,
|
||
|
pub resampler: Vec<f32>,
|
||
|
pub client_key: u8,
|
||
|
pub intensity: u8,
|
||
|
pub kpps: u32,
|
||
|
pub color: Color
|
||
|
}
|
||
|
|
||
|
impl WorldState{
|
||
|
|
||
|
}
|