summaryrefslogtreecommitdiff
path: root/src/geometry.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-04-22 21:50:00 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-04-22 21:50:00 +0200
commit88430f31c73f469086b68f2b77d1e1ba5f9178e7 (patch)
tree292a0aceba92e4d0c38679ed919b9b463c82152b /src/geometry.rs
parent3e54b01003aa9d27de8f4ca13c9240fe785ec0e1 (diff)
More minimal game state
I'd prefer to start with just the state that I need, and progressively readd the bits that I've skipped as I find I need them, or as the competition evolves.
Diffstat (limited to 'src/geometry.rs')
-rw-r--r--src/geometry.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/geometry.rs b/src/geometry.rs
index 9e541ef..dc8b096 100644
--- a/src/geometry.rs
+++ b/src/geometry.rs
@@ -4,3 +4,5 @@ mod point;
pub use self::point::*;
mod rect;
pub use self::rect::*;
+mod direction;
+pub use self::direction::*;