Files
minigame-menu/games/manual/manual.h

28 lines
659 B
C
Raw Normal View History

2025-10-17 21:08:03 +02:00
/*
2025-10-18 21:35:01 +02:00
* Created by snapshot112 on 10/17/2025
2025-10-17 21:08:03 +02:00
*
2025-10-18 21:35:01 +02:00
* Provides a way to display the minigame manual in the assets in game.
2025-10-17 21:08:03 +02:00
*/
#ifndef MINIGAME_MENU_MANUAL_H
#define MINIGAME_MENU_MANUAL_H
2025-10-22 15:07:52 +02:00
#include "../../engine/grid_game_engine.h"
2025-10-17 21:08:03 +02:00
/*
2025-10-18 21:35:01 +02:00
* An in game manual for the minigames menu.
2025-10-17 21:08:03 +02:00
*
* 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:
2025-10-18 21:35:01 +02:00
* Press ESCAPE or BACKSPACE to exit the manual.
2025-10-17 21:08:03 +02:00
*/
void manual(coordinate display_location);
#endif //MINIGAME_MENU_MANUAL_H