DungeonCrawl
Loading...
Searching...
No Matches
main_menu.h
Go to the documentation of this file.
1
5#ifndef MAIN_MENU_H
6#define MAIN_MENU_H
7
8#include "menu.h"
9
10
18int init_main_menu(void);
19
26menu_result_t show_main_menu(bool game_in_progress);
27
31void shutdown_main_menu(void);
32
33#endif// MAIN_MENU_H
menu_result_t show_main_menu(bool game_in_progress)
Display and handle the main menu.
Definition main_menu.c:43
int init_main_menu(void)
Initializes resources for the main menu, including memory allocation and observer registration for lo...
Definition main_menu.c:28
void shutdown_main_menu(void)
Shuts down the main menu and frees associated data.
Definition main_menu.c:160
Exposes helper functions to work with menus.