aboutsummaryrefslogtreecommitdiff
path: root/saga/scene.h
diff options
context:
space:
mode:
Diffstat (limited to 'saga/scene.h')
-rw-r--r--saga/scene.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/saga/scene.h b/saga/scene.h
index a5679fb468..8530c25613 100644
--- a/saga/scene.h
+++ b/saga/scene.h
@@ -209,6 +209,11 @@ struct INTRO_CREDIT {
};
+enum SceneFlags {
+ kSceneFlagISO = 1,
+ kSceneFlagShowCursor = 2
+};
+
class Scene {
public:
Scene(SagaEngine *vm);
@@ -228,6 +233,7 @@ class Scene {
int queueScene(SCENE_QUEUE *scene_queue);
int draw(SURFACE *);
int getMode();
+ int getFlags() { return _desc.flags; }
void getBGMaskInfo(int &width, int &height, byte *&buffer, size_t &bufferLength);
int isBGMaskPresent() {