summaryrefslogtreecommitdiff
path: root/src/command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.rs')
-rw-r--r--src/command.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/command.rs b/src/command.rs
index 4428b4d..c6d6695 100644
--- a/src/command.rs
+++ b/src/command.rs
@@ -32,11 +32,11 @@ impl Command {
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum Action {
- Move(Point2d<i8>),
- Dig(Point2d<i8>),
+ Move(Point2d),
+ Dig(Point2d),
Shoot(Direction),
- Bomb(Point2d<i8>),
- Snowball(Point2d<i8>),
+ Bomb(Point2d),
+ Snowball(Point2d),
DoNothing,
}