summaryrefslogtreecommitdiffstats
path: root/Tank.hs
blob: c5bf4657b43e4a2be74dc493c65727f8b91e48b7 (plain)
1
2
3
4
5
6
7
8
module Tank ( Tank(..)
            ) where

data Tank = Tank
          { posx :: !Float
          , posy :: !Float
          , dir :: !Float
          } deriving Show