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.
|
|
|
|
/**
|
|
|
|
|
* @file mainmenu.h
|
|
|
|
|
*
|
|
|
|
|
* Interface of functions for interacting with the main menu.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __MAINMENU_H__
|
|
|
|
|
#define __MAINMENU_H__
|
|
|
|
|
|
|
|
|
|
#include "multi.h"
|
|
|
|
|
|
|
|
|
|
DEVILUTION_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
extern char gszHero[16];
|
|
|
|
|
|
|
|
|
|
bool mainmenu_select_hero_dialog(GameData *gameData);
|
|
|
|
|
void mainmenu_loop();
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
DEVILUTION_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
#endif /* __MAINMENU_H__ */
|