diff options
Diffstat (limited to 'Tank.hs')
-rw-r--r-- | Tank.hs | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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 |