diff options
-rw-r--r-- | engines/hdb/ai-player.cpp | 4 | ||||
-rw-r--r-- | engines/hdb/ai-player.h | 1 |
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); |