aboutsummaryrefslogtreecommitdiff
path: root/engines/access/access.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-08-14 22:02:47 -0400
committerPaul Gilbert2014-08-14 22:02:47 -0400
commit9547efad776899d1ff49a22e1baa5893080e5830 (patch)
treef1862691dbd368c0175e37f6c9874354e0aae330 /engines/access/access.h
parentf66f01bf89b4ae071bdb299e43fd34c1bcb8a3ea (diff)
downloadscummvm-rg350-9547efad776899d1ff49a22e1baa5893080e5830.tar.gz
scummvm-rg350-9547efad776899d1ff49a22e1baa5893080e5830.tar.bz2
scummvm-rg350-9547efad776899d1ff49a22e1baa5893080e5830.zip
ACCESS: Implemented player plotting methods
Diffstat (limited to 'engines/access/access.h')
-rw-r--r--engines/access/access.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/engines/access/access.h b/engines/access/access.h
index d919ae83f9..1e83c6e97c 100644
--- a/engines/access/access.h
+++ b/engines/access/access.h
@@ -70,15 +70,6 @@ enum AccessDebugChannels {
struct AccessGameDescription;
-class ImageEntry {
-public:
- int _frameNumber;
- SpriteResource *_spritesPtr;
- int _priority;
- Common::Point _position;
- int _flags;
-};
-
class AccessEngine : public Engine {
private:
/**
@@ -137,17 +128,14 @@ public:
Common::Array<Common::Rect> _newRects;
Common::Array<Common::Rect> _oldRects;
Common::Array<ExtraCell> _extraCells;
- Common::Array<ImageEntry> _images;
+ ImageEntryList _images;
int _pCount;
int _selectCommand;
bool _normalMouse;
int _mouseMode;
int _currentManOld;
- byte *_man;
- byte *_man1;
byte *_inactive;
- byte *_manPal1;
byte *_music;
byte *_title;
int _converseMode;
@@ -222,11 +210,6 @@ public:
*/
void freeInactiveData();
- /**
- * Free animation data
- */
- void freeManData();
-
void establish(int v);
void establishCenter(int v);