Files

35 lines
654 B
C
Raw Permalink Normal View History

2025-10-13 15:29:56 +02:00
/*
2025-10-18 21:35:01 +02:00
* Created by snapshot112 on 15/10/2025
*
2025-10-13 15:29:56 +02:00
* Naam: Jeroen Boxhoorn
* UvAnetID: 16333969
2025-10-18 21:35:01 +02:00
* Studie: BSC Informatica
2025-10-13 15:29:56 +02:00
*
* 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-18 21:35:01 +02:00
*
* A user manual can be found in the assets or by selected it in the menu using ENTER or 'f'.
2025-10-13 15:29:56 +02:00
*/
2025-10-22 15:07:52 +02:00
#include "engine/grid_game_engine.h"
#include "games/minigame-menu/minigame_menu.h"
2025-10-13 15:29:56 +02:00
/*
* Play minigame menu.
*
* Side effect:
* Minigame menu starts.
*/
2025-10-14 13:58:22 +02:00
int main(void) {
init_engine();
2025-10-13 15:29:56 +02:00
2025-10-17 21:08:03 +02:00
// Speel het spel.
minigame_menu();
2025-10-13 15:29:56 +02:00
cleanup_engine();
2025-10-13 15:29:56 +02:00
}