summaryrefslogtreecommitdiffstats
path: root/Tank.hs
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2010-03-08 22:13:35 +0100
committerMatthias Schiffer <matthias@gamezock.de>2010-03-08 22:13:35 +0100
commit335c10654f7d41053ffcabed19cb003d1c0ce13e (patch)
treeb1b6e0bf7582206c3953492a0407a5120ca9ff75 /Tank.hs
parent7edb7c0e060d509db83287c1cd8389e37dfc3a17 (diff)
downloadhtanks-335c10654f7d41053ffcabed19cb003d1c0ce13e.tar
htanks-335c10654f7d41053ffcabed19cb003d1c0ce13e.zip
Added bullet texture and movement; restructured game state
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