aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorNipun Garg2019-06-27 22:28:50 +0530
committerEugene Sandulenko2019-09-03 17:17:02 +0200
commitdbfddba4cfbcfee8e588e68cd2ce92c7e1d898de (patch)
treebf2d84f782d2aab088de55162724435e9b58ecc6 /engines
parent678de0f73f4f48348895efdaccb656a4ae583a48 (diff)
downloadscummvm-rg350-dbfddba4cfbcfee8e588e68cd2ce92c7e1d898de.tar.gz
scummvm-rg350-dbfddba4cfbcfee8e588e68cd2ce92c7e1d898de.tar.bz2
scummvm-rg350-dbfddba4cfbcfee8e588e68cd2ce92c7e1d898de.zip
HDB: Add stubbed aiBarrelExplosionEnd(int, int)
Diffstat (limited to 'engines')
-rw-r--r--engines/hdb/ai-player.cpp4
-rw-r--r--engines/hdb/ai-player.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/engines/hdb/ai-player.cpp b/engines/hdb/ai-player.cpp
index 05e8035954..e3997494c8 100644
--- a/engines/hdb/ai-player.cpp
+++ b/engines/hdb/ai-player.cpp
@@ -304,6 +304,10 @@ void aiBarrelExplodeSpread(AIEntity *e) {
warning("STUB: AI: aiBarrelExplodeSpread required");
}
+void aiBarrelExplosionEnd(int x, int y) {
+ warning("STUB: AI: aiBarrelExplosionEnd(int, int) required");
+}
+
void aiBarrelBlowup(AIEntity *e, int x, int y) {
warning("STUB: AI: aiBarrelBlowup required");
}
diff --git a/engines/hdb/ai-player.h b/engines/hdb/ai-player.h
index b78d03cd62..0ab9c162c9 100644
--- a/engines/hdb/ai-player.h
+++ b/engines/hdb/ai-player.h
@@ -62,6 +62,7 @@ void aiBarrelExplodeInit(AIEntity *e);
void aiBarrelExplodeInit2(AIEntity *e);
void aiBarrelExplodeAction(AIEntity *e);
void aiBarrelExplodeSpread(AIEntity *e);
+void aiBarrelExplosionEnd(int x, int y);
void aiBarrelBlowup(AIEntity *e, int x, int y);
void aiMaintBotInit(AIEntity *e);