diff options
Diffstat (limited to 'engines/sword25/gfx/graphicengine.h')
-rw-r--r-- | engines/sword25/gfx/graphicengine.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sword25/gfx/graphicengine.h b/engines/sword25/gfx/graphicengine.h index e68969e128..8968cc898e 100644 --- a/engines/sword25/gfx/graphicengine.h +++ b/engines/sword25/gfx/graphicengine.h @@ -57,7 +57,7 @@ namespace Sword25 { -class BS_Kernel; +class Kernel; class Image; class Panel; class Screenshot; @@ -77,7 +77,7 @@ typedef unsigned int BS_COLOR; Die bisher einzige Implementation ist BS_DDrawGfx. */ -class GraphicEngine : public BS_ResourceService, public BS_Persistable { +class GraphicEngine : public ResourceService, public Persistable { public: // Enums // ----- @@ -358,8 +358,8 @@ public: // Persistence Methods // ------------------- - virtual bool Persist(BS_OutputPersistenceBlock &Writer); - virtual bool Unpersist(BS_InputPersistenceBlock &Reader); + virtual bool Persist(OutputPersistenceBlock &Writer); + virtual bool Unpersist(InputPersistenceBlock &Reader); static void ARGBColorToLuaColor(lua_State *L, unsigned int Color); static unsigned int LuaColorToARGBColor(lua_State *L, int StackIndex); @@ -367,7 +367,7 @@ public: protected: // Constructor // ----------- - GraphicEngine(BS_Kernel *pKernel); + GraphicEngine(Kernel *pKernel); // Display Variables // ----------------- |