test keybindings and close handler for process
This commit is contained in:
56
pkg/data/keybindings.go
Normal file
56
pkg/data/keybindings.go
Normal file
@@ -0,0 +1,56 @@
|
||||
package data
|
||||
|
||||
type KeyBindings struct {
|
||||
CharacterScreen KeyBinding
|
||||
Inventory KeyBinding
|
||||
HoradricCube KeyBinding
|
||||
PartyScreen KeyBinding
|
||||
MercenaryScreen KeyBinding
|
||||
MessageLog KeyBinding
|
||||
QuestLog KeyBinding
|
||||
HelpScreen KeyBinding
|
||||
|
||||
SkillTree KeyBinding
|
||||
SkillSpeedBar KeyBinding
|
||||
Skills [16]KeyBinding
|
||||
SelectPreviousSkill KeyBinding
|
||||
SelectNextSkill KeyBinding
|
||||
|
||||
ShowBelt KeyBinding
|
||||
UseBelt [4]KeyBinding
|
||||
SwapWeapons KeyBinding
|
||||
|
||||
Chat KeyBinding
|
||||
Run KeyBinding
|
||||
ToggleRunWalk KeyBinding
|
||||
StandStill KeyBinding
|
||||
ForceMove KeyBinding
|
||||
ShowItems KeyBinding
|
||||
ShowPortraits KeyBinding
|
||||
|
||||
Automap KeyBinding
|
||||
CenterAutomap KeyBinding
|
||||
FadeAutomap KeyBinding
|
||||
PartyOnAutomap KeyBinding
|
||||
NamesOnAutomap KeyBinding
|
||||
ToggleMiniMap KeyBinding
|
||||
|
||||
SayHelp KeyBinding
|
||||
SayFollowMe KeyBinding
|
||||
SayThisIsForYou KeyBinding
|
||||
SayThanks KeyBinding
|
||||
SaySorry KeyBinding
|
||||
SayBye KeyBinding
|
||||
SayNowYouDie KeyBinding
|
||||
SayRetreat KeyBinding
|
||||
|
||||
ClearScreen KeyBinding
|
||||
ClearMessages KeyBinding
|
||||
Zoom KeyBinding
|
||||
LegacyToggle KeyBinding
|
||||
}
|
||||
|
||||
type KeyBinding struct {
|
||||
Key1 [2]uint8
|
||||
Key2 [2]uint8
|
||||
}
|
||||
Reference in New Issue
Block a user