aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/script.cpp
diff options
context:
space:
mode:
authorĽubomír Remák2019-01-12 03:51:21 +0100
committerĽubomír Remák2019-01-12 03:51:21 +0100
commita97a14cc8918c7b60d94ec07ca4b214f3a7a2c93 (patch)
tree614bbbbdd844d8d9114d634b2e82d1c030f17632 /engines/mutationofjb/script.cpp
parent9d5bfdd01518f9bf1156b859894efbbb7d9f46ec (diff)
downloadscummvm-rg350-a97a14cc8918c7b60d94ec07ca4b214f3a7a2c93.tar.gz
scummvm-rg350-a97a14cc8918c7b60d94ec07ca4b214f3a7a2c93.tar.bz2
scummvm-rg350-a97a14cc8918c7b60d94ec07ca4b214f3a7a2c93.zip
MUTATIONOFJB: Add support for SETANIM command.
Diffstat (limited to 'engines/mutationofjb/script.cpp')
-rw-r--r--engines/mutationofjb/script.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/mutationofjb/script.cpp b/engines/mutationofjb/script.cpp
index a931785404..fc42f08486 100644
--- a/engines/mutationofjb/script.cpp
+++ b/engines/mutationofjb/script.cpp
@@ -51,6 +51,7 @@
#include "mutationofjb/commands/loadplayercommand.h"
#include "mutationofjb/commands/bitmapvisibilitycommand.h"
#include "mutationofjb/commands/playanimationcommand.h"
+#include "mutationofjb/commands/setobjectframecommand.h"
#include "mutationofjb/game.h"
namespace MutationOfJB {
@@ -85,6 +86,7 @@ static CommandParser **getParsers() {
new LoadPlayerCommandParser,
new BitmapVisibilityCommandParser,
new PlayAnimationCommandParser,
+ new SetObjectFrameCommandParser,
nullptr
};