| 
									
										
										
										
											2025-10-16 01:10:09 +02:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2025-10-18 21:35:01 +02:00
										 |  |  |  * Created by snapshot112 on 6/10/2025 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2025-10-16 01:10:09 +02:00
										 |  |  |  * Naam: Jeroen Boxhoorn | 
					
						
							|  |  |  |  * UvAnetID: 16333969 | 
					
						
							| 
									
										
										
										
											2025-10-18 21:35:01 +02:00
										 |  |  |  * Studie: BSC Informatica | 
					
						
							| 
									
										
										
										
											2025-10-16 01:10:09 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2025-10-18 21:35:01 +02:00
										 |  |  |  * A game of maze runner build on the grid game engine. | 
					
						
							| 
									
										
										
										
											2025-10-16 01:10:09 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Please make sure to include and initialize the game engine before calling maze_runner(); | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * How to play the game: | 
					
						
							|  |  |  |  * - You are the '*' character. | 
					
						
							|  |  |  |  * - Use either WSAD or the arrow keys to navigate through the maze. | 
					
						
							|  |  |  |  * - The exit of the maze is marked with a '$'. | 
					
						
							|  |  |  |  * - Walls are '#'. | 
					
						
							|  |  |  |  * - Traps are 'X'. These kill you. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You can quit the program at any time by pressing CTRL + C. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Have fun playing! | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef MINIGAME_MENU_MAZE_RUNNER_H
 | 
					
						
							|  |  |  | #define MINIGAME_MENU_MAZE_RUNNER_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2025-10-18 21:35:01 +02:00
										 |  |  |  * A game of maze runner build on the grid game engine. | 
					
						
							| 
									
										
										
										
											2025-10-16 01:10:09 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Please make sure to include and initialize the game engine before calling maze_runner(); | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Side Effects: | 
					
						
							|  |  |  |  * Clears the console and uses it to play a game of maze runner. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Controls: | 
					
						
							|  |  |  |  * use WSAD or arrow keys to move through the maze. | 
					
						
							| 
									
										
										
										
											2025-10-18 21:35:01 +02:00
										 |  |  |  * Use BACKSPACE or ESCAPE to exit the game early. | 
					
						
							| 
									
										
										
										
											2025-10-16 01:10:09 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | void maze_runner(void); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif //MINIGAME_MENU_MAZE_RUNNER_H
 |