aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2019-07-24 12:01:00 +0200
committerEugene Sandulenko2019-09-03 17:17:27 +0200
commitc3d0f49538a441069d42944b52b73bd7d1c5952b (patch)
tree5dc0cfb07516d155ba016634eb469cc8c73729f6 /engines/hdb/gfx.h
parentb845e70102afff09e2377e37ea5831380549bb0d (diff)
downloadscummvm-rg350-c3d0f49538a441069d42944b52b73bd7d1c5952b.tar.gz
scummvm-rg350-c3d0f49538a441069d42944b52b73bd7d1c5952b.tar.bz2
scummvm-rg350-c3d0f49538a441069d42944b52b73bd7d1c5952b.zip
HDB: Reduce header dependency
Diffstat (limited to 'engines/hdb/gfx.h')
-rw-r--r--engines/hdb/gfx.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/engines/hdb/gfx.h b/engines/hdb/gfx.h
index 26b08108c7..9805fc9e6b 100644
--- a/engines/hdb/gfx.h
+++ b/engines/hdb/gfx.h
@@ -29,28 +29,6 @@
namespace HDB {
-enum {
- kScreenWidth = 640,
- kScreenHeight = 480,
- kScreenDrawWidth = (kScreenWidth - 160), // visible pixels wide
- kScreenDrawHeight = 480,
- kTileWidth = 32,
- kTileHeight = 32,
- kMaxSkies = 10,
- kNum3DStars = 300,
- kFontSpace = 5,
- kFontIncrement = 1,
- kGameFPS = 60,
- kAnimFrameDelay = kGameFPS / 30,
- kAnimSlowFrames = kAnimFrameDelay * 10,
- kAnimMediumFrames = kAnimFrameDelay * 6,
- kAnimFastFrames = kAnimFrameDelay * 2,
- kProgressY = (kScreenHeight - 64)
-};
-
-class Tile;
-class Picture;
-
struct TileLookup {
const char *filename;
Tile *tData;