Files
minigame-menu/spel.c

25 lines
416 B
C
Raw Normal View History

2025-10-13 15:29:56 +02:00
/*
* Naam: Jeroen Boxhoorn
* UvAnetID: 16333969
* Studie: BSc Informatica
*
* A minigame menu that lets you play games on the grid game engine.
2025-10-13 15:29:56 +02:00
*
* Currently the following games are included:
* - maze runner
* - snake
* - minesweeper
2025-10-13 15:29:56 +02:00
*/
#include "grid_game_engine.h"
#include "minigame_menu.h"
2025-10-13 15:29:56 +02:00
2025-10-14 13:58:22 +02:00
int main(void) {
init_engine();
2025-10-13 15:29:56 +02:00
// 5. Speel het spel.
minigame_menu();
2025-10-13 15:29:56 +02:00
cleanup_engine();
2025-10-13 15:29:56 +02:00
}