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
Matthias Schiffer 62fe58cb55 Initial commit
2010-02-22 16:50:42 +01:00

8 lines
167 B
Haskell

module Tank ( Tank(..)
) where
data Tank = Tank
{ posx :: !Float
, posy :: !Float
, dir :: !Float
} deriving Show