diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-02-08 15:09:25 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-02-08 16:18:22 -0800 |
commit | 730e5dde39333cb2f63c72a7d7152bee5c4dbb05 (patch) | |
tree | 510ef3e0ad46ecf1f2bee1fa42f26e6377b51686 /src/map/script.hpp | |
parent | 7a15a3efe85837d52d950cc9f895eadcc9eb6be1 (diff) | |
download | tmwa-730e5dde39333cb2f63c72a7d7152bee5c4dbb05.tar.gz tmwa-730e5dde39333cb2f63c72a7d7152bee5c4dbb05.tar.bz2 tmwa-730e5dde39333cb2f63c72a7d7152bee5c4dbb05.tar.xz tmwa-730e5dde39333cb2f63c72a7d7152bee5c4dbb05.zip |
Implement AString
Diffstat (limited to 'src/map/script.hpp')
-rw-r--r-- | src/map/script.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/map/script.hpp b/src/map/script.hpp index ec52f65..22a079b 100644 --- a/src/map/script.hpp +++ b/src/map/script.hpp @@ -6,7 +6,8 @@ # include <vector> -# include "../strings/fstring.hpp" +# include "../strings/rstring.hpp" +# include "../strings/astring.hpp" # include "../strings/zstring.hpp" # include "../common/db.hpp" @@ -157,12 +158,12 @@ struct ScriptLabel; extern Map<ScriptLabel, int> scriptlabel_db; extern -UPMap<FString, const ScriptBuffer> userfunc_db; +UPMap<RString, const ScriptBuffer> userfunc_db; void do_init_script(void); void do_final_script(void); -extern FString mapreg_txt; +extern AString mapreg_txt; extern int script_errors; |