#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