diff options
-rw-r--r-- | engines/hdb/draw-manager.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/hdb/draw-manager.h b/engines/hdb/draw-manager.h index 343d8bc2e3..2bf5386e15 100644 --- a/engines/hdb/draw-manager.h +++ b/engines/hdb/draw-manager.h @@ -48,6 +48,14 @@ struct TileLookup { TileLookup() : filename(NULL), tData(NULL), skyIndex(0), animIndex(0) {} }; +struct GfxCache { + char name[32]; + Tile *gfx; + uint32 size; + uint16 loaded; + + GfxCache() : name(""), gfx(NULL), size(0), loaded(0) {} +}; class DrawMan { public: |