diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-12-19 19:08:59 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-19 19:08:59 +1100 |
commit | 63903276e5e1c3f96629d87cdaab9e868368b343 (patch) | |
tree | e335b36c27fba80e56605b95e6fd3f4993bd6f58 /source/frontend/StarOptionsMenu.hpp | |
parent | 2bf5be1af36fa53fc686bb893dc97e5ed10ddaa4 (diff) | |
parent | 300b8f2dbae631fdddeafaee683f450418e5cc57 (diff) |
Merge pull request #157 from Bottinator22/main
Allow post process shaders to be grouped up and enabled/disabled via Lua or a shaders menu
Diffstat (limited to 'source/frontend/StarOptionsMenu.hpp')
-rw-r--r-- | source/frontend/StarOptionsMenu.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/frontend/StarOptionsMenu.hpp b/source/frontend/StarOptionsMenu.hpp index 4bc36ad..9fde1ac 100644 --- a/source/frontend/StarOptionsMenu.hpp +++ b/source/frontend/StarOptionsMenu.hpp @@ -3,6 +3,7 @@ #include "StarPane.hpp" #include "StarConfiguration.hpp" #include "StarMainInterfaceTypes.hpp" +#include "StarUniverseClient.hpp" namespace Star { @@ -17,7 +18,7 @@ STAR_CLASS(OptionsMenu); class OptionsMenu : public Pane { public: - OptionsMenu(PaneManager* manager); + OptionsMenu(PaneManager* manager, UniverseClientPtr client); virtual void show() override; |