diff options
Diffstat (limited to 'src/grid.rs')
| -rw-r--r-- | src/grid.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/grid.rs b/src/grid.rs index ecc59c3..72a849a 100644 --- a/src/grid.rs +++ b/src/grid.rs @@ -3,6 +3,9 @@ use crate::transform::Transform; use raylib::drawing::RaylibDraw; use raylib::ffi::Color; +/// The internal grid length which will be used to snap things to it. +pub const SNAP_SIZE: f32 = 0.5; + pub const LINE_COLOUR: Color = Color { r: 255, g: 255, |
