This repository has been archived on 2023-06-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2022FuncProg-project3-RPGEn.../src/Main.hs
2022-12-13 23:21:51 +01:00

16 lines
312 B
Haskell

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