aboutsummaryrefslogtreecommitdiffstats
path: root/src/mainMenu.h
blob: 1396183854f6f1814dd8a05da9c8e193c2525eb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "gameCommon.h"
#include "animation.h"
#include "ui.h"

#ifndef MAIN_MENU_H
#define MAIN_MENU_H

typedef struct MainMenu {
    Animation startButtonAnimation;
    TexturedButton startButton;
} MainMenu;

void initMainMenu(MainMenu* mainMenu, Game* game);
void updateMainMenu(MainMenu* mainMenu, Game* game);
void closeMainMenu(MainMenu* mainMenu);

#endif