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.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/pink/resource_mgr.h b/engines/pink/resource_mgr.h
index 7672e84bb0..47c381ad37 100644
--- a/engines/pink/resource_mgr.h
+++ b/engines/pink/resource_mgr.h
@@ -25,12 +25,17 @@
#ifndef PINK_RESOURCE_MGR_H
#define PINK_RESOURCE_MGR_H
+namespace Common {
+ class String;
+}
+
namespace Pink {
class GamePage;
class PinkEngine;
class OrbFile;
class BroFile;
+class Sound;
struct ResourceDescription;
@@ -40,12 +45,14 @@ public:
~ResourceMgr();
void init(PinkEngine *game, GamePage *page);
+ //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:
+ PinkEngine *_game;
OrbFile *_orb;
BroFile *_bro;
ResourceDescription *_resDescTable;