aboutsummaryrefslogtreecommitdiff
path: root/scumm/costume.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-05-31 22:09:35 +0000
committerEugene Sandulenko2005-05-31 22:09:35 +0000
commit6d0082d29da1a3adb05743d70f11904a282e0938 (patch)
tree0a772ecfcc5988bc7968fd0678593dc9e6d3beeb /scumm/costume.h
parentd1ffc9df2d3a907e2de871a9b9b4c81d4af3e55c (diff)
downloadscummvm-rg350-6d0082d29da1a3adb05743d70f11904a282e0938.tar.gz
scummvm-rg350-6d0082d29da1a3adb05743d70f11904a282e0938.tar.bz2
scummvm-rg350-6d0082d29da1a3adb05743d70f11904a282e0938.zip
Some stubs for C64 MM costume code
svn-id: r18304
Diffstat (limited to 'scumm/costume.h')
-rw-r--r--scumm/costume.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/scumm/costume.h b/scumm/costume.h
index 905c1d9940..d770fe4f32 100644
--- a/scumm/costume.h
+++ b/scumm/costume.h
@@ -67,14 +67,9 @@ protected:
byte increaseAnim(Actor *a, int slot);
};
-class C64CostumeLoader : public BaseCostumeLoader {
+class C64CostumeLoader : public ClassicCostumeLoader {
public:
- int _id;
- const byte *_baseptr;
- const byte *_dataOffsets;
- byte _numAnim;
-
- C64CostumeLoader(ScummEngine *vm) : BaseCostumeLoader(vm) {}
+ C64CostumeLoader(ScummEngine *vm) : ClassicCostumeLoader(vm) {}
void loadCostume(int id);
void costumeDecodeData(Actor *a, int frame, uint usemask);
byte increaseAnims(Actor *a);