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.
19 lines
436 B
19 lines
436 B
/** |
|
* @file controls/town_npc_nav.hpp |
|
* |
|
* Town NPC navigation for accessibility. |
|
*/ |
|
#pragma once |
|
|
|
namespace devilution { |
|
|
|
void SelectNextTownNpcKeyPressed(); |
|
void SelectPreviousTownNpcKeyPressed(); |
|
void GoToSelectedTownNpcKeyPressed(); |
|
void SpeakSelectedTownNpc(); |
|
void ListTownNpcsKeyPressed(); |
|
void UpdateAutoWalkTownNpc(); |
|
bool IsTownNpcActionAllowed(); |
|
void ResetAutoWalkTownNpc(); |
|
|
|
} // namespace devilution
|
|
|