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

13 lines
246 B
Haskell
Raw Normal View History

2010-02-22 16:50:42 +01:00
module Tank ( Tank(..)
) where
import Data.Fixed
2010-02-22 16:50:42 +01:00
data Tank = Tank
2010-02-25 02:15:26 +01:00
{ posx :: !Micro
, posy :: !Micro
, dir :: !Micro
, aim :: !Micro
, speed :: !Micro
2010-02-22 16:50:42 +01:00
} deriving Show