HDB: Move constants to draw-manager

This commit is contained in:
Nipun Garg 2019-06-28 17:59:55 +05:30 committed by Eugene Sandulenko
parent 763cc24c4c
commit 003f8dc2a4
2 changed files with 2 additions and 5 deletions

View File

@ -30,6 +30,8 @@
namespace HDB {
enum {
kScreenWidth = 640,
kScreenHeight = 480,
kTileWidth = 32,
kTileHeight = 32,
kMaxSkies = 10,

View File

@ -110,11 +110,6 @@ enum Flag {
kFlagPlummet = 0x8000000
};
enum {
kScreenWidth = 640,
kScreenHeight = 480
};
class HDBGame : public Engine {
public:
HDBGame(OSystem *syst, const ADGameDescription *gameDesc);