diff options
Diffstat (limited to 'engines/pegasus/ai/ai_area.h')
-rwxr-xr-x | engines/pegasus/ai/ai_area.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/pegasus/ai/ai_area.h b/engines/pegasus/ai/ai_area.h index 0338f2b96c..7387b4081b 100755 --- a/engines/pegasus/ai/ai_area.h +++ b/engines/pegasus/ai/ai_area.h @@ -31,6 +31,11 @@ #include "pegasus/timers.h" #include "pegasus/ai/ai_rule.h" +namespace Common { + class ReadStream; + class WriteStream; +} + /* The AI area is the area at the bottom of the screen. There are three areas within @@ -80,6 +85,9 @@ public: AIArea(InputHandler *); virtual ~AIArea(); + void writeAIRules(Common::WriteStream *stream); + void readAIRules(Common::ReadStream *stream); + void initAIArea(); void saveAIState(); |