Add textures, gameplay pause, and menu state placeholders.

This commit is contained in:
2026-05-20 13:59:01 +03:00
parent 67f5fcf374
commit 25a7fefa04
11 changed files with 276 additions and 47 deletions
+2
View File
@@ -30,4 +30,6 @@ void Menu::Draw() {
Color textColor = (i == selectedIndex) ? YELLOW : WHITE;
DrawText(options[i].c_str(), screenWidth / 2 - MeasureText(options[i].c_str(), 40) / 2, screenHeight / 2 + (i * 60), 40, textColor);
}
// Draw Control keys
}