aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/zvision/actions.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/engines/zvision/actions.h b/engines/zvision/actions.h
index 9b2267df82..224f9011a1 100644
--- a/engines/zvision/actions.h
+++ b/engines/zvision/actions.h
@@ -40,9 +40,7 @@ public:
// The different types of actions
-// CROSSFADE,
// DEBUG,
-// DELAY_RENDER,
// DISABLE_CONTROL,
// DISABLE_VENUS,
// DISPLAY_MESSAGE,
@@ -129,6 +127,16 @@ private:
uint16 _timeInMillis;
};
+class ActionDelayRender : public ResultAction {
+public:
+ ActionDelayRender(Common::String *line);
+ bool execute(ZVision *engine);
+
+private:
+ // TODO: Check if this should actually be frames or if it should be milliseconds/seconds
+ byte framesToDelay;
+};
+
class ActionPlayAnimation : public ResultAction {
public:
ActionPlayAnimation(Common::String *line);