00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef __QUEST_H__
00016 #define __QUEST_H__
00017
00018 #include "fileops.h"
00019 #include "storage.h"
00020
00021
00022
00023 class quest : public storage
00024 {
00025 public:
00026 quest ();
00027 ~quest ();
00028
00029 #ifndef SWIG
00030 void load (igzstream&);
00031 void save (ogzstream&);
00032
00033 string name;
00034 #endif // SWIG
00035 };
00036
00037
00038 #ifndef SWIG
00039 namespace data
00040 {
00041
00042
00043
00044
00045 extern dictionary <quest *> quests;
00046 }
00047 #endif
00048
00049 #endif // __QUEST_H__