Rename the config entry for changing the quick messages texts Other small improvements and simplifications Set the quick spell hotkey text to be white with a black shadow Add QuitGame action, unbound by default Set the ItemInfo and QuestDebug keys to be unbound by default
17 lines
354 B
C++
17 lines
354 B
C++
/**
|
|
* @file gamemenu.h
|
|
*
|
|
* Interface of the in-game menu functions.
|
|
*/
|
|
#pragma once
|
|
|
|
namespace devilution {
|
|
|
|
void gamemenu_on();
|
|
void gamemenu_off();
|
|
void gamemenu_handle_previous();
|
|
void gamemenu_quit_game(bool bActivate);
|
|
void gamemenu_load_game(bool bActivate);
|
|
void gamemenu_save_game(bool bActivate);
|
|
|
|
} // namespace devilution
|