16 lines
208 B
Rust
16 lines
208 B
Rust
|
use anyhow::Result;
|
||
|
|
||
|
pub struct RFactorData {
|
||
|
// TODO
|
||
|
}
|
||
|
|
||
|
impl RFactorData {
|
||
|
pub const fn default() -> Self {
|
||
|
Self {}
|
||
|
}
|
||
|
|
||
|
pub fn update(&mut self) -> Result<()> {
|
||
|
Ok(())
|
||
|
}
|
||
|
}
|