aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/resource_mgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/resource_mgr.h')
-rw-r--r--engines/pink/resource_mgr.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/pink/resource_mgr.h b/engines/pink/resource_mgr.h
index 47c381ad37..8de06b25b2 100644
--- a/engines/pink/resource_mgr.h
+++ b/engines/pink/resource_mgr.h
@@ -21,6 +21,7 @@
*/
#include <common/scummsys.h>
+#include <common/stream.h>
#ifndef PINK_RESOURCE_MGR_H
#define PINK_RESOURCE_MGR_H
@@ -48,13 +49,13 @@ public:
//move methods to page
//compiler must do RVO
//Common::String loadText(Common::String &name);
- Sound loadSound(Common::String &name);
+ Sound *loadSound(Common::String &name);
// loadCEL();
private:
+ Common::SeekableReadStream *getResourceStream(Common::String &name);
+
PinkEngine *_game;
- OrbFile *_orb;
- BroFile *_bro;
ResourceDescription *_resDescTable;
uint32 _resCount;
};