summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.h
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-12 20:15:12 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-12 20:16:21 -0800
commit81909732f69d66ccd53c0701bbb7c6507ecec5b1 (patch)
tree9aec6574a716fa9b22ca8cb0e950f9738575ecda /crawl-ref/source/tags.h
parenteb59a79d8f2e4957fc45a4550b5ab9245150c14c (diff)
downloadcrawl-ref-81909732f69d66ccd53c0701bbb7c6507ecec5b1.tar.gz
crawl-ref-81909732f69d66ccd53c0701bbb7c6507ecec5b1.zip
store: can now handle monsters and Lua chunks
CrawlHashTables and CrawlVectors can now contain monsters and Lua chunks.
Diffstat (limited to 'crawl-ref/source/tags.h')
-rw-r--r--crawl-ref/source/tags.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/tags.h b/crawl-ref/source/tags.h
index da4e1211aa..773c686b49 100644
--- a/crawl-ref/source/tags.h
+++ b/crawl-ref/source/tags.h
@@ -96,6 +96,7 @@ void marshallString (writer &, const std::string &, int maxSize = 0);
void marshallString4 (writer &, const std::string &);
void marshallCoord (writer &, const coord_def &);
void marshallItem (writer &, const item_def &);
+void marshallMonster (writer &, const monsters &);
void marshallShowtype (writer &, const show_type &);
/* ***********************************************************************
@@ -134,6 +135,7 @@ std::string unmarshallString (reader &, int maxSize = 1000);
void unmarshallString4 (reader &, std::string&);
void unmarshallCoord (reader &, coord_def &c);
void unmarshallItem (reader &, item_def &item);
+void unmarshallMonster (reader &, monsters &item);
show_type unmarshallShowtype (reader &);
/* ***********************************************************************