about summary refs log blame commit diff
path: root/src/Main.hs
blob: 1cd4e94457896db99666972d5fc256321d23b180 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                      
                                 

                                   
module Main where

import Xanthous.Prelude
import Brick

import Xanthous.Game (getInitialState)
import Xanthous.App (makeApp)

ui :: Widget ()
ui = str "Hello, world!"

main :: IO ()
main = do
  app <- makeApp
  initialState <- getInitialState
  _ <- defaultMain app initialState
  pure ()