aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/celer2.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/celer2.h')
-rw-r--r--engines/avalanche/celer2.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/engines/avalanche/celer2.h b/engines/avalanche/celer2.h
index 56c5f22d09..fe38ebe917 100644
--- a/engines/avalanche/celer2.h
+++ b/engines/avalanche/celer2.h
@@ -36,23 +36,16 @@
#include "graphics/surface.h"
-
-
namespace Avalanche {
class AvalancheEngine;
class Celer {
public:
Celer(AvalancheEngine *vm);
-
~Celer();
-
-
void updateBackgroundSprites();
-
void loadBackgroundSprites(byte number);
-
void forgetBackgroundSprites();
// Setting the destination to negative coordinates means the picture should be drawn to it's original position.
@@ -71,8 +64,6 @@ private:
::Graphics::Surface _picture;
};
-
-
AvalancheEngine *_vm;
int32 _offsets[40];
@@ -80,13 +71,8 @@ private:
SpriteType _sprites[40];
bytefield _r;
Common::String _filename;
-
-
-
static const int16 kOnDisk; /* Value of memos[fv].x when it's not in memory. */
-
-
void drawSprite(int16 x, int16 y, const SpriteType &sprite);
};