28 lines
605 B
C
28 lines
605 B
C
/*
|
|
* Created by snapshot112 on 10/15/25.
|
|
*
|
|
* Display the manual for the minigames
|
|
*/
|
|
|
|
#ifndef MINIGAME_MENU_MANUAL_H
|
|
#define MINIGAME_MENU_MANUAL_H
|
|
#include "grid_game_engine.h"
|
|
|
|
/*
|
|
* A 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 ENTER to exit the manual.
|
|
*/
|
|
void manual(coordinate display_location);
|
|
|
|
#endif //MINIGAME_MENU_MANUAL_H
|