summaryrefslogtreecommitdiffstats
path: root/Tank.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Tank.hs')
-rw-r--r--Tank.hs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Tank.hs b/Tank.hs
deleted file mode 100644
index 4b68889..0000000
--- a/Tank.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-module Tank ( Tank(..)
- ) where
-
-import Data.Fixed
-
-data Tank = Tank
- { posx :: !Micro
- , posy :: !Micro
- , dir :: !Micro
- , aim :: !Micro
- , speed :: !Micro
- , turnspeed :: !Micro
- , moving :: !Bool
- } deriving Show