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

import Data.Fixed

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