25 lines
416 B
C
25 lines
416 B
C
/*
|
|
* Naam: Jeroen Boxhoorn
|
|
* UvAnetID: 16333969
|
|
* Studie: BSc Informatica
|
|
*
|
|
* A minigame menu that lets you play games on the grid game engine.
|
|
*
|
|
* Currently the following games are included:
|
|
* - maze runner
|
|
* - snake
|
|
* - minesweeper
|
|
*/
|
|
|
|
#include "grid_game_engine.h"
|
|
#include "minigame_menu.h"
|
|
|
|
int main(void) {
|
|
init_engine();
|
|
|
|
// 5. Speel het spel.
|
|
minigame_menu();
|
|
|
|
cleanup_engine();
|
|
}
|