This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
htanks/Tank.hs
2010-02-24 03:40:06 +01:00

11 lines
214 B
Haskell

module Tank ( Tank(..)
) where
import Data.Fixed
data Tank = Tank
{ posx :: !Micro
, posy :: !Micro
, dir :: !Micro
, aim :: !Micro
} deriving Show