diff options
Diffstat (limited to 'src/Xanthous/Game.hs')
-rw-r--r-- | src/Xanthous/Game.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Xanthous/Game.hs b/src/Xanthous/Game.hs new file mode 100644 index 000000000000..c88509819cbb --- /dev/null +++ b/src/Xanthous/Game.hs @@ -0,0 +1,12 @@ +module Xanthous.Game + ( GameState(..) + , getInitialState + ) where + +import Xanthous.Prelude + +data GameState = GameState + { } + +getInitialState :: IO GameState +getInitialState = pure GameState |