turtle/src/general/length.rs
Dietrich fac9d218ad Initial turtle-lib commit
Working so far:
  * display a window
  * display a turtle
  * go forward
2022-12-06 14:04:44 +01:00

7 lines
148 B
Rust

use bevy_inspector_egui::Inspectable;
use super::Precision;
#[derive(Inspectable, Default, Copy, Clone, Debug)]
pub struct Length(pub Precision);