devilutionX/Source/gamemenu.h
Jmgr 994c5e7cfe Add a keymapper
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
2021-05-03 17:51:40 +02:00

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