rFactor2_vk_hud/src/overlay/rfactor_data.rs

16 lines
208 B
Rust
Raw Normal View History

2023-01-12 16:45:06 +00:00
use anyhow::Result;
pub struct RFactorData {
// TODO
}
impl RFactorData {
pub const fn default() -> Self {
Self {}
}
pub fn update(&mut self) -> Result<()> {
Ok(())
}
}