aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
blob: bc0fc8cc2025a5af4e4a8dea51e133ca02054441 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "utils.h"
#include "settings.h"

#ifndef GAME_H
#define GAME_H

typedef struct Game {
  Settings settings;
} Game;

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

#endif