summaryrefslogtreecommitdiffstats
path: root/src/app/pausemanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/pausemanager.h')
-rw-r--r--src/app/pausemanager.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app/pausemanager.h b/src/app/pausemanager.h
index d2c0eab..fefc4a5 100644
--- a/src/app/pausemanager.h
+++ b/src/app/pausemanager.h
@@ -22,6 +22,7 @@
#pragma once
#include "common/singleton.h"
+#include "sound/sound.h"
#include <string>
@@ -30,6 +31,7 @@ enum PauseType {
PAUSE_NONE = 0,
PAUSE_USER,
PAUSE_SATCOM,
+ PAUSE_SATCOMMOVIE,
PAUSE_DIALOG,
PAUSE_EDITOR,
PAUSE_VISIT,
@@ -52,6 +54,9 @@ public:
private:
std::string GetPauseName(PauseType pause);
+private:
+ CSoundInterface* m_sound;
+
PauseType m_pause;
};