Delete cruft, add Reader monad to some internal ai

This commit is contained in:
jgk
2021-05-16 21:42:11 +02:00
parent 0798cc0b0e
commit d7fcdbf550
69 changed files with 721 additions and 2894 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
{- |
Module : Loop
Description : Minimal game loop
Description : Simple game loop
This module sets up an SDL window which may be updated using a simple game loop.
-}
@@ -41,7 +41,7 @@ setupLoop
startWorld <- ioStartWorld
initializeAll
bracket
(createWindow (T.pack "A Minimal Game Loop") (winConfig xSize ySize))
(createWindow (T.pack "Simple Game Loop") (winConfig xSize ySize))
destroyWindow
$ \window -> bracket
(glCreateContext window)