diff options
author | Bottinator22 <59987380+Bottinator22@users.noreply.github.com> | 2024-08-21 19:23:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-21 19:23:11 -0700 |
commit | 08dd7d72d71a43e1c881877726c07d0683a4ca67 (patch) | |
tree | 2f4e2d390fcf139f84e3b71b48d61312d8cf9626 /source/client | |
parent | b0d3c88834c2c73732b1850ab2415dc2d7637e4b (diff) |
Update StarClientApplication.hpp
Diffstat (limited to 'source/client')
-rw-r--r-- | source/client/StarClientApplication.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source/client/StarClientApplication.hpp b/source/client/StarClientApplication.hpp index fe68f22..840dc9a 100644 --- a/source/client/StarClientApplication.hpp +++ b/source/client/StarClientApplication.hpp @@ -52,6 +52,11 @@ private: String account; String password; }; + + struct PostProcessLayer { + List<String> effects; + unsigned passes; + }; void renderReload(); @@ -98,6 +103,8 @@ private: WorldPainterPtr m_worldPainter; WorldRenderData m_renderData; MainInterfacePtr m_mainInterface; + + List<PostProcessLayer> m_postProcessLayers; // Valid if main app state == SinglePlayer UniverseServerPtr m_universeServer; |