diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-02 17:19:54 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-02 17:19:54 +1000 |
commit | 2386a9534289baf73ce299f33e110f612ff55e38 (patch) | |
tree | 19dca601d4bb7fa0bae23944485ad87024a034ef /source/frontend/StarOptionsMenu.hpp | |
parent | 73841ee041b8b52f5fde16dc272228704697bcb8 (diff) |
Input Binding support
Diffstat (limited to 'source/frontend/StarOptionsMenu.hpp')
-rw-r--r-- | source/frontend/StarOptionsMenu.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/frontend/StarOptionsMenu.hpp b/source/frontend/StarOptionsMenu.hpp index 14158be..bd8c4ba 100644 --- a/source/frontend/StarOptionsMenu.hpp +++ b/source/frontend/StarOptionsMenu.hpp @@ -12,7 +12,7 @@ STAR_CLASS(ButtonWidget); STAR_CLASS(LabelWidget); STAR_CLASS(KeybindingsMenu); STAR_CLASS(GraphicsMenu); - +STAR_CLASS(BindingsMenu); STAR_CLASS(OptionsMenu); class OptionsMenu : public Pane { @@ -38,6 +38,7 @@ private: void syncGuiToConf(); void displayControls(); + void displayModBindings(); void displayGraphics(); SliderBarWidgetPtr m_sfxSlider; @@ -58,6 +59,7 @@ private: JsonObject m_origConfig; JsonObject m_localChanges; + BindingsMenuPtr m_modBindingsMenu; KeybindingsMenuPtr m_keybindingsMenu; GraphicsMenuPtr m_graphicsMenu; PaneManager* m_paneManager; |