Main, pause, options, and in-game menu systems wired up; ready for gameplay

This commit is contained in:
2026-08-24 22:49:16 -05:00
parent 4dacb370a6
commit 0fe31615c5
12 changed files with 327 additions and 88 deletions

16
assets/main-menu.rml Normal file
View File

@@ -0,0 +1,16 @@
<rml>
<head>
<title>gamejam</title>
<link type="text/rcss" href="globals.rcss" />
<link type="text/rcss" href="main-menu.rcss" />
</head>
<body data-model="game_data">
<div id="start_menu">
<h1>Curious Critters</h1>
<button class="menu-btn" id="start-btn" data-event-click="start_game">Start</button>
<button class="menu-btn" id="options-btn" data-event-click="open_options_menu">Options</button>
</div>
</body>
</rml>