summaryrefslogtreecommitdiff
path: root/src/scenes/sceneManager.c
blob: 4d42ed9deeff23f678aef7fff28956b293c16db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "scenes.h"

void UpdateScene(enum SCENE scene) {
    switch (scene) {
        case MAIN_MENU: MainMenuUpdate();
    }
}

void DrawScene(enum SCENE scene) {
    switch (scene) {
        case MAIN_MENU: MainMenuDraw();
    }
}