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.
18 lines
297 B
18 lines
297 B
|
6 years ago
|
/**
|
||
|
5 years ago
|
* @file menu.h
|
||
|
6 years ago
|
*
|
||
|
|
* Interface of functions for interacting with the main menu.
|
||
|
|
*/
|
||
|
5 years ago
|
#pragma once
|
||
|
8 years ago
|
|
||
|
5 years ago
|
#include "multi.h"
|
||
|
|
|
||
|
5 years ago
|
namespace devilution {
|
||
|
6 years ago
|
|
||
|
5 years ago
|
extern uint32_t gSaveNumber;
|
||
|
8 years ago
|
|
||
|
5 years ago
|
bool mainmenu_select_hero_dialog(GameData *gameData);
|
||
|
7 years ago
|
void mainmenu_loop();
|
||
|
8 years ago
|
|
||
|
5 years ago
|
} // namespace devilution
|