28 lines
		
	
	
		
			659 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			659 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Created by snapshot112 on 10/17/2025
 | |
|  *
 | |
|  * Provides a way to display the minigame manual in the assets in game.
 | |
|  */
 | |
| 
 | |
| #ifndef MINIGAME_MENU_MANUAL_H
 | |
| #define MINIGAME_MENU_MANUAL_H
 | |
| #include "../../engine/grid_game_engine.h"
 | |
| 
 | |
| /*
 | |
|  * An in game manual for the minigames menu.
 | |
|  *
 | |
|  * Please make sure to include and initialize the game engine before opening the manual
 | |
|  *
 | |
|  * Input:
 | |
|  * display_location: The location to display the manual.
 | |
|  *
 | |
|  * Side Effects:
 | |
|  * Clears the console and uses it to display the manual.
 | |
|  *
 | |
|  * Controls:
 | |
|  * Press ESCAPE or BACKSPACE to exit the manual.
 | |
|  */
 | |
| void manual(coordinate display_location);
 | |
| 
 | |
| #endif //MINIGAME_MENU_MANUAL_H
 |