It's not hard to do. There is even a "TOMBSTONE" mode that brings up "modal dialogs" -- just need to throw the game into (a new) "INTRO" state with appropriate IntroDT
all the new states (title, character creation, intro) can be added piecemeal without breaking anything, the whole game runs in a State machine.
GIVEN I start the game THEN I enter STATE_INTRO AND The intro page is displayed
and
GIVEN I am in STATE_INTRO WHEN I press the spacebar THEN I am now in STATE_RUNNING (or whatever this is called)
AC:
Notes:
_Originally posted by @Rushwind13 in https://github.com/Rushwind13/JMoria/pull/35#discussion_r1807979207_