summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-10-15 13:52:24 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-11-04 18:49:49 +0100
commitc346361417241d0e4d7531ed65a1ca5b4f497139 (patch)
tree8c76c3b32dac858b2a36df7d032ff50e49545384 /crawl-ref/source/tags.h
parentf4a9aed257bbdd264fb1ef43e7b29b3cc599cd65 (diff)
downloadcrawl-ref-c346361417241d0e4d7531ed65a1ca5b4f497139.tar.gz
crawl-ref-c346361417241d0e4d7531ed65a1ca5b4f497139.zip
Get rid of level_type, unify BRANCH_*, LEVEL_* and portal vaults.
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 d232bc3061..ad45234b15 100644
--- a/crawl-ref/source/tags.h
+++ b/crawl-ref/source/tags.h
@@ -135,6 +135,7 @@ void marshallItem (writer &, const item_def &);
void marshallMonster (writer &, const monster&);
void marshallMonsterInfo (writer &, const monster_info &);
void marshallMapCell (writer &, const map_cell &);
+void marshall_level_id(writer& th, const level_id& id);
void marshallEnumVal (writer &, const enum_info *, int);
@@ -205,6 +206,7 @@ void unmarshallItem (reader &, item_def &item);
void unmarshallMonster (reader &, monster& item);
void unmarshallMonsterInfo (reader &, monster_info &mi);
void unmarshallMapCell (reader &, map_cell& cell);
+level_id unmarshall_level_id(reader& th);
int unmarshallEnumVal (reader &, const enum_info *);