summaryrefslogtreecommitdiff
path: root/src/engine/command.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-08-16 22:58:07 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-08-16 22:58:07 +0200
commitc36278ec2593ff9b25bf3f5bad22ab547cca5447 (patch)
tree83f760d13fd6f4273cf7a5ff6a7486ff3920b8ea /src/engine/command.rs
parentc2795dd5bd74f9bdc1c77ae5a07b2b416a71d714 (diff)
Printed debug for different tower building
Diffstat (limited to 'src/engine/command.rs')
-rw-r--r--src/engine/command.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/command.rs b/src/engine/command.rs
index e6dbedf..c4268c5 100644
--- a/src/engine/command.rs
+++ b/src/engine/command.rs
@@ -1,7 +1,7 @@
use std::fmt;
use super::geometry::Point;
-#[derive(Debug, Clone, Copy)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Command {
Nothing,
Build(Point, BuildingType),