diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-03-20 01:53:34 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-03-20 01:53:34 +1100 |
commit | 6d76a11e256cd96c9cdd7ae5a10c0276e6347277 (patch) | |
tree | d52459889408115d1e0eb657a05dc58e098e50eb /source/client/StarClientApplication.hpp | |
parent | 58a346e563df12af9194c198c7ffe974411abb28 (diff) |
experiment: unclamped lighting
Diffstat (limited to 'source/client/StarClientApplication.hpp')
-rw-r--r-- | source/client/StarClientApplication.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/client/StarClientApplication.hpp b/source/client/StarClientApplication.hpp index 6f80349..5670595 100644 --- a/source/client/StarClientApplication.hpp +++ b/source/client/StarClientApplication.hpp @@ -53,6 +53,8 @@ private: String password; }; + void renderReload(); + void changeState(MainAppState newState); void setError(String const& error); void setError(String const& error, std::exception const& e); @@ -71,6 +73,8 @@ private: RootUPtr m_root; ThreadFunction<void> m_rootLoader; + CallbackListenerPtr m_reloadListener; + MainAppState m_state = MainAppState::Startup; // Valid after applicationInit is called |