17 lines
315 B
Haskell
17 lines
315 B
Haskell
-- Representation of all the game's data
|
|
|
|
module RPGEngine.Data.Game
|
|
( Game(..)
|
|
,initGame
|
|
) where
|
|
|
|
import RPGEngine.Data.Types
|
|
import RPGEngine.Data.State
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
-- Initialize the game
|
|
initGame :: Game
|
|
initGame = Game {
|
|
state = defaultState
|
|
}
|