import RPGEngine ----------------------------- Constants ------------------------------ -- Title of the game title :: String title = "RPG Engine" -- Framerate of the game fps :: Int fps = 60 ---------------------------------------------------------------------- main :: IO () main = playRPGEngine title fps