about summary refs log tree commit diff
path: root/src/Xanthous/Game.hs
blob: c88509819cbbe62230714f9d50745453a49d90ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module Xanthous.Game
  ( GameState(..)
  , getInitialState
  ) where

import Xanthous.Prelude

data GameState = GameState
  { }

getInitialState :: IO GameState
getInitialState = pure GameState