aboutsummaryrefslogtreecommitdiff
path: root/engines/chewy/graphics.h
diff options
context:
space:
mode:
authorFilippos Karapetis2016-10-10 04:50:35 +0300
committerFilippos Karapetis2016-10-10 04:50:35 +0300
commit375618828f5131dc3a838b51ffca7f7a6973b8f2 (patch)
treec94ff9ff1a59d5dc01c6d9829840df9fca630b22 /engines/chewy/graphics.h
parent684cbfa2fdee6d2927409670a22ecc571ef31a02 (diff)
downloadscummvm-rg350-375618828f5131dc3a838b51ffca7f7a6973b8f2.tar.gz
scummvm-rg350-375618828f5131dc3a838b51ffca7f7a6973b8f2.tar.bz2
scummvm-rg350-375618828f5131dc3a838b51ffca7f7a6973b8f2.zip
CHEWY: Move cursor related functions into a separate file
Diffstat (limited to 'engines/chewy/graphics.h')
-rw-r--r--engines/chewy/graphics.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/engines/chewy/graphics.h b/engines/chewy/graphics.h
index a3f6005942..a260311df5 100644
--- a/engines/chewy/graphics.h
+++ b/engines/chewy/graphics.h
@@ -41,20 +41,10 @@ public:
void loadFont(Common::String filename);
void drawText(Common::String text, uint x, uint y);
- void setCursor(uint num, bool newCursor = true);
- void showCursor();
- void hideCursor();
- void animateCursor();
- void nextCursor();
-
private:
void drawTransparent(uint16 x, uint16 y, byte *data, uint16 width, uint16 height, byte transparentColor);
ChewyEngine *_vm;
-
- uint _curCursor;
- uint _curCursorFrame;
- SpriteResource *_cursorSprites;
Font *_font;
};