aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
blob: 89f17d6efa385324a400c26efe7987a056673a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "game.h"

void initGame(Game * game) {
	InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "Killa Facsista");
}

void closeGame(Game * game) {
	CloseWindow();
}

void updateGame(Game * game) {
	BeginDrawing();

	EndDrawing();
}