aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/ai.h
diff options
context:
space:
mode:
authorNipun Garg2019-07-04 23:32:46 +0530
committerEugene Sandulenko2019-09-03 17:17:11 +0200
commitc9c08476f16e7535da0bd8aff231f6ee6fa8a0db (patch)
tree1018bec8f1d1f00153457a4a4cc99f6f38049038 /engines/hdb/ai.h
parentac04002411d4094359c9f2722cecb41dd740d861 (diff)
downloadscummvm-rg350-c9c08476f16e7535da0bd8aff231f6ee6fa8a0db.tar.gz
scummvm-rg350-c9c08476f16e7535da0bd8aff231f6ee6fa8a0db.tar.bz2
scummvm-rg350-c9c08476f16e7535da0bd8aff231f6ee6fa8a0db.zip
HDB: Add Gfx data
Diffstat (limited to 'engines/hdb/ai.h')
-rw-r--r--engines/hdb/ai.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h
index 78de3d48d5..908bd51a65 100644
--- a/engines/hdb/ai.h
+++ b/engines/hdb/ai.h
@@ -766,6 +766,27 @@ struct CineBlit {
}
#define spawnBlocking(x, y, level) g_hdb->_ai->spawn(AI_NONE, DIR_NONE, x, y, NULL, NULL, NULL, DIR_NONE, level, 0, 0, 0)
+extern Picture *icepSnowballGfxDown; // ICEPUFF's snowball moving down
+extern Picture *icepSnowballGfxLeft; // ICEPUFF's snowball moving left
+extern Picture *icepSnowballGfxRight; // ICEPUFF's snowball moving right
+
+extern Tile *tileFroglickMiddleUD;
+extern Tile *tileFroglickWiggleUD[3];
+extern Tile *tileFroglickMiddleLR;
+extern Tile *tileFroglickWiggleLeft[3];
+extern Tile *tileFroglickWiggleRight[3];
+
+extern Picture *gfxDragonAsleep;
+extern Picture *gfxDragonFlap[2];
+extern Picture *gfxDragonBreathe[3];
+
+extern Tile *gfxLaserbeamUD[4];
+extern Tile *gfxLaserbeamUDTop[4];
+extern Tile *gfxLaserbeamUDBottom[4];
+extern Tile *gfxLaserbeamLR[4];
+extern Tile *gfxLaserbeamLRLeft[4];
+extern Tile *gfxLaserbeamLRRight[4];
+
class AI {
public:
AI();