summaryrefslogtreecommitdiffstats
path: root/Tank.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Tank.hs')
-rw-r--r--Tank.hs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Tank.hs b/Tank.hs
index 54322cf..28f286c 100644
--- a/Tank.hs
+++ b/Tank.hs
@@ -4,8 +4,9 @@ module Tank ( Tank(..)
import Data.Fixed
data Tank = Tank
- { posx :: !Micro
- , posy :: !Micro
- , dir :: !Micro
- , aim :: !Micro
+ { posx :: !Micro
+ , posy :: !Micro
+ , dir :: !Micro
+ , aim :: !Micro
+ , speed :: !Micro
} deriving Show