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.
21 lines
596 B
21 lines
596 B
/** |
|
* @file utils/navigation_speech.hpp |
|
* |
|
* Navigation speech: exit/stairs/portal/unexplored speech and keyboard walk keys. |
|
*/ |
|
#pragma once |
|
|
|
namespace devilution { |
|
|
|
void SpeakNearestExitKeyPressed(); |
|
void SpeakNearestTownPortalInTownKeyPressed(); |
|
void SpeakNearestStairsDownKeyPressed(); |
|
void SpeakNearestStairsUpKeyPressed(); |
|
void KeyboardWalkNorthKeyPressed(); |
|
void KeyboardWalkSouthKeyPressed(); |
|
void KeyboardWalkEastKeyPressed(); |
|
void KeyboardWalkWestKeyPressed(); |
|
void SpeakNearestUnexploredTileKeyPressed(); |
|
bool IsKeyboardWalkAllowed(); |
|
|
|
} // namespace devilution
|
|
|