This repository has been archived on 2025-03-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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