aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
blob: 5d4e58d5c088c2623a33a27554c728c145ca9889 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "gameCommon.h"

#ifndef GAME_H
#define GAME_H

typedef enum ScreenId
{
    MAIN_MENU_SCREEN,
    GAME_SCREEN
} ScreenId;

typedef struct Game
{
} Game;

void initGame(Game* game);
void updateGame(Game* game);
void closeGame(Game* game);

#endif