aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/script/ai_script.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/bladerunner/script/ai_script.h')
-rw-r--r--engines/bladerunner/script/ai_script.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/engines/bladerunner/script/ai_script.h b/engines/bladerunner/script/ai_script.h
index 066de29445..8577682463 100644
--- a/engines/bladerunner/script/ai_script.h
+++ b/engines/bladerunner/script/ai_script.h
@@ -156,6 +156,39 @@ DECLARE_SCRIPT(Maggie)
float sub_44B200(int actorId, float x, float y, float z);
END_SCRIPT
+DECLARE_SCRIPT(GenericWalkerA)
+ bool isInside;
+ float deltaX;
+ float deltaZ;
+
+ void movingStart();
+ void movingUpdate();
+ bool prepareWalker();
+ bool preparePath();
+END_SCRIPT
+
+DECLARE_SCRIPT(GenericWalkerB)
+ bool isInside;
+ float deltaX;
+ float deltaZ;
+
+ void movingStart();
+ void movingUpdate();
+ bool prepareWalker();
+ bool preparePath();
+END_SCRIPT
+
+DECLARE_SCRIPT(GenericWalkerC)
+ bool isInside;
+ float deltaX;
+ float deltaZ;
+
+ void movingStart();
+ void movingUpdate();
+ bool prepareWalker();
+ bool preparePath();
+END_SCRIPT
+
#undef DECLARE_SCRIPT
#undef END_SCRIPT