summaryrefslogtreecommitdiffhomepage
path: root/Stars45/GameWinDX9.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/GameWinDX9.h')
-rw-r--r--Stars45/GameWinDX9.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Stars45/GameWinDX9.h b/Stars45/GameWinDX9.h
index 002983a..50484ff 100644
--- a/Stars45/GameWinDX9.h
+++ b/Stars45/GameWinDX9.h
@@ -7,6 +7,7 @@
#ifndef GameWinDX9_h
#define GameWinDX9_h
+#include "Color.h"
#include "Game.h"
#include "Types.h"
@@ -29,14 +30,20 @@ public:
int MaxTexSize() const;
int MaxTexAspect() const;
+ Color GetScreenColor() const;
+ int GetScreenWidth() const;
+ int GetScreenHeight() const;
void SetMaxTexSize(int n);
+ void SetScreenColor(Color c);
+
protected:
PALETTEENTRY standard_palette[256];
BYTE inverse_palette[32768];
int max_tex_size;
+ Color screen_color;
private:
static GameWinDX9* instance;