diff options
| author | oy <Tom_Adams@web.de> | 2011-02-18 11:41:27 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-02-18 11:41:27 +0100 |
| commit | 4f91026a01436d95cb20b3a994e96dce5072544e (patch) | |
| tree | 5faaec04c1404bc473f0f6b5c57b9c243730ec00 /src/engine | |
| parent | 169efb129f947209b6d3cdfdc632d3804dcd549d (diff) | |
| download | zcatch-4f91026a01436d95cb20b3a994e96dce5072544e.tar.gz zcatch-4f91026a01436d95cb20b3a994e96dce5072544e.zip | |
added an editor function to show tile informations (index, flip/rotate status)
Diffstat (limited to 'src/engine')
| -rw-r--r-- | src/engine/client.h | 2 | ||||
| -rw-r--r-- | src/engine/client/client.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/engine/client.h b/src/engine/client.h index e6bc0f2e..539bed44 100644 --- a/src/engine/client.h +++ b/src/engine/client.h @@ -132,6 +132,8 @@ public: virtual bool ConnectionProblems() = 0; virtual bool SoundInitFailed() = 0; + + virtual int GetDebugFont() = 0; }; class IGameClient : public IInterface diff --git a/src/engine/client/client.h b/src/engine/client/client.h index 35cbad3b..c073139a 100644 --- a/src/engine/client/client.h +++ b/src/engine/client/client.h @@ -238,6 +238,8 @@ public: virtual bool SoundInitFailed() { return m_SoundInitFailed; } + virtual int GetDebugFont() { return m_DebugFont; } + void DirectInput(int *pInput, int Size); void SendInput(); |