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

25 lines
499 B
Haskell

{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module Game ( GameState(..)
, Game
, runGame
) where
import Level
import Tank
import Control.Monad
import Control.Monad.State
data GameState = GameState
{ level :: !Level
, tanks :: ![Tank]
} deriving (Show)
newtype Game a = Game (StateT GameState IO a)
deriving (Monad, MonadIO, MonadState GameState)
runGame :: GameState -> Game a -> IO (a, GameState)
runGame st (Game a) = runStateT a st