13 lines
No EOL
277 B
Haskell
13 lines
No EOL
277 B
Haskell
module RPGEngine.Input.Lose
|
|
( handleInputLose
|
|
) where
|
|
|
|
import RPGEngine.Input.Core ( InputHandler )
|
|
|
|
import RPGEngine.Data ( Game )
|
|
|
|
------------------------------ Exported ------------------------------
|
|
|
|
-- TODO
|
|
handleInputLose :: InputHandler Game
|
|
handleInputLose = undefined |