forked from snapshot112/minigame-menu
27 lines
467 B
C
27 lines
467 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 "manual.h"
|
|
#include "minigame_menu.h"
|
|
|
|
int main(void) {
|
|
init_engine();
|
|
|
|
// Speel het spel.
|
|
// manual((coordinate){0,3});
|
|
minigame_menu();
|
|
|
|
cleanup_engine();
|
|
}
|