blob: c8b9fb31e2c692dc29e30e9a74d220d82236a5a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "gameCommon.h"
#ifndef MAIN_MENU_H
#define MAIN_MENU_H
typedef struct MainMenu {
} MainMenu;
void initMainMenu(MainMenu* mainMenu, Game* game);
void updateMainMenu(MainMenu* mainMenu, Game* game);
void closeMainMenu(MainMenu* mainMenu);
#endif
|