You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
319 B
19 lines
319 B
/** |
|
* @file menu.h |
|
* |
|
* Interface of functions for interacting with the main menu. |
|
*/ |
|
#pragma once |
|
|
|
#include <cstdint> |
|
|
|
#include "multi.h" |
|
|
|
namespace devilution { |
|
|
|
extern uint32_t gSaveNumber; |
|
|
|
bool mainmenu_select_hero_dialog(GameData *gameData); |
|
void mainmenu_loop(); |
|
|
|
} // namespace devilution
|
|
|