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

9 lines
167 B
Haskell
Raw Normal View History

2010-02-22 16:50:42 +01:00
module Tank ( Tank(..)
) where
data Tank = Tank
{ posx :: !Float
, posy :: !Float
, dir :: !Float
} deriving Show