summaryrefslogtreecommitdiff
path: root/src/scenes/scenes.h
blob: 88295e60ae0f4f140e318a8cf3a5917682e49530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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