diff options
| author | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-07 15:24:11 +0500 |
|---|---|---|
| committer | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-07 15:24:11 +0500 |
| commit | ed2a75816a34aee3026cb07c85fb3be11decbf4d (patch) | |
| tree | 47bf13dc6eab7576794de67bad92547bcdb66e3a /src/scenes/scenes.h | |
| parent | 5d010fb632964dcf1191f548a07eb1a0dcb83c41 (diff) | |
simple scene logic + raygui import
Diffstat (limited to 'src/scenes/scenes.h')
| -rw-r--r-- | src/scenes/scenes.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/scenes/scenes.h b/src/scenes/scenes.h new file mode 100644 index 0000000..88295e6 --- /dev/null +++ b/src/scenes/scenes.h @@ -0,0 +1,17 @@ +#ifndef SCENES_H +#define SCENES_H + +/// The scene that the action should be executed upon +enum SCENE { + MAIN_MENU, +}; + +void DrawScene(enum SCENE scene); +void UpdateScene(enum SCENE scene); + + +// ========== MAIN MENU ========== +void MainMenuUpdate(); +void MainMenuDraw(); + +#endif // SCENES_H |
