diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-12 22:16:12 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-12 22:16:12 +1000 |
commit | 40223a5090bf8a502094927da39fc96a5cfd5eae (patch) | |
tree | 01fc797ad3f45879d132de3063fe1cab3f554835 /source/client/StarClientApplication.hpp | |
parent | cf09616b1b241635dae0648c544b4e8ff3e2bd72 (diff) |
Initial work
Diffstat (limited to 'source/client/StarClientApplication.hpp')
-rw-r--r-- | source/client/StarClientApplication.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/client/StarClientApplication.hpp b/source/client/StarClientApplication.hpp index 186efaf..4ee837e 100644 --- a/source/client/StarClientApplication.hpp +++ b/source/client/StarClientApplication.hpp @@ -11,11 +11,13 @@ #include "StarErrorScreen.hpp" #include "StarCinematic.hpp" #include "StarKeyBindings.hpp" -#include "StarInput.hpp" #include "StarMainApplication.hpp" namespace Star { +STAR_CLASS(Input); +STAR_CLASS(Voice); + class ClientApplication : public Application { protected: virtual void startup(StringList const& cmdLineArgs) override; @@ -76,6 +78,7 @@ private: MainMixerPtr m_mainMixer; GuiContextPtr m_guiContext; InputPtr m_input; + VoicePtr m_voice; // Valid after renderInit is called the first time CinematicPtr m_cinematicOverlay; |