HDB: Add stubbed aiBarrelExplosionEnd(int, int)

This commit is contained in:
Nipun Garg 2019-06-27 22:28:50 +05:30 committed by Eugene Sandulenko
parent 678de0f73f
commit dbfddba4cf
2 changed files with 5 additions and 0 deletions

View File

@ -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");
}

View File

@ -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);