16 lines
312 B
Haskell
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
|