aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/pcode.h
diff options
context:
space:
mode:
authorMax Horn2009-03-15 20:30:57 +0000
committerMax Horn2009-03-15 20:30:57 +0000
commit9cbed926cdab8a450c6000b750b3f16c5a24d583 (patch)
tree8757548b2e8be6d3472578aa2a74cdf29edc2972 /engines/tinsel/pcode.h
parent77d5d3093a6c70d9de8949635a529bf760aabcf9 (diff)
downloadscummvm-rg350-9cbed926cdab8a450c6000b750b3f16c5a24d583.tar.gz
scummvm-rg350-9cbed926cdab8a450c6000b750b3f16c5a24d583.tar.bz2
scummvm-rg350-9cbed926cdab8a450c6000b750b3f16c5a24d583.zip
Moved Tinsel::Serializer to Common::Serializer, so that I can use it in the SCI engine
svn-id: r39428
Diffstat (limited to 'engines/tinsel/pcode.h')
-rw-r--r--engines/tinsel/pcode.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/tinsel/pcode.h b/engines/tinsel/pcode.h
index 0c75cc0df1..4bdfcf5626 100644
--- a/engines/tinsel/pcode.h
+++ b/engines/tinsel/pcode.h
@@ -30,10 +30,13 @@
#include "tinsel/events.h" // for TINSEL_EVENT
#include "tinsel/sched.h" // for PROCESS
+namespace Common {
+ class Serializer;
+}
+
namespace Tinsel {
// forward declaration
-class Serializer;
struct INV_OBJECT;
enum RESUME_STATE {
@@ -79,7 +82,7 @@ struct INT_CONTEXT {
RESCODE resumeCode;
RESUME_STATE resumeState;
- void syncWithSerializer(Serializer &s);
+ void syncWithSerializer(Common::Serializer &s);
};
typedef INT_CONTEXT *PINT_CONTEXT;