aboutsummaryrefslogtreecommitdiff
path: root/script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'script.cpp')
-rw-r--r--script.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/script.cpp b/script.cpp
index 9b33a1cd63..8afbbd4135 100644
--- a/script.cpp
+++ b/script.cpp
@@ -23,6 +23,15 @@
#include "stdafx.h"
#include "scumm.h"
#include "actor.h"
+#include "resource.h"
+
+/* Script status type (slot.status) */
+enum {
+ ssDead = 0,
+ ssPaused = 1,
+ ssRunning = 2
+};
+
/* Start executing script 'script' with parameters 'a' and 'b' */
void Scumm::runScript(int script, int a, int b, int16 *lvarptr)