summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapmark.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-06-03 14:50:28 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-06-03 15:00:55 +0200
commitfb25c15890882e4f66e12c964220e5619e6d8550 (patch)
treeb8544253d2880aa131a2299e378f8375d70d0ccb /crawl-ref/source/mapmark.h
parentc980b46fec25aa89a65b77fd6347b7fabae3569f (diff)
downloadcrawl-ref-fb25c15890882e4f66e12c964220e5619e6d8550.tar.gz
crawl-ref-fb25c15890882e4f66e12c964220e5619e6d8550.zip
Revert "Tomb using map markers."
This reverts commit 3045b999025412edb402c5c4ba646bf258cfcb22. This wasn't meant to be pushed; I posted a copy to mantis.
Diffstat (limited to 'crawl-ref/source/mapmark.h')
-rw-r--r--crawl-ref/source/mapmark.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/crawl-ref/source/mapmark.h b/crawl-ref/source/mapmark.h
index a13c5f01f8..62cd8fe722 100644
--- a/crawl-ref/source/mapmark.h
+++ b/crawl-ref/source/mapmark.h
@@ -102,23 +102,6 @@ public:
int duration, radius;
};
-class map_tomb_marker : public map_marker
-{
-public:
- map_tomb_marker(const coord_def& pos = coord_def(0, 0),
- int dur = 0);
-
- void write(writer &) const;
- void read(reader &);
- map_marker *clone() const;
- std::string debug_describe() const;
-
- static map_marker *read(reader &, map_marker_type);
-
-public:
- int duration;
-};
-
// A marker powered by Lua.
class map_lua_marker : public map_marker, public dgn_event_listener
{