summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-transit.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-09-06 06:33:57 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-09-05 12:56:13 +0200
commit31adfd48395f3c74daad1f72b874f497020481a7 (patch)
treed7733b7e157fa13c4af485ed7c51b3f97c6b1a72 /crawl-ref/source/mon-transit.h
parenta49e4492fc269271c7809d2caeb1e4d80bb0b7bf (diff)
downloadcrawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.tar.gz
crawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.zip
Rename class "monsters" to "monster".
Diffstat (limited to 'crawl-ref/source/mon-transit.h')
-rw-r--r--crawl-ref/source/mon-transit.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-transit.h b/crawl-ref/source/mon-transit.h
index 6f6a88e11c..4ba9ec4572 100644
--- a/crawl-ref/source/mon-transit.h
+++ b/crawl-ref/source/mon-transit.h
@@ -13,14 +13,14 @@
struct follower
{
- monsters mons;
+ monster mons;
FixedVector<item_def, NUM_MONSTER_SLOTS> items;
follower() : mons(), items() { }
- follower(const monsters &m);
+ follower(const monster& m);
bool place(bool near_player = false);
void load_mons_items();
- void restore_mons_items(monsters &m);
+ void restore_mons_items(monster& m);
};
typedef std::list<follower> m_transit_list;
@@ -35,7 +35,7 @@ extern items_in_transit transiting_items;
void transit_lists_clear();
m_transit_list *get_transit_list(const level_id &where);
-void add_monster_to_transit(const level_id &dest, const monsters &m);
+void add_monster_to_transit(const level_id &dest, const monster& m);
void add_item_to_transit(const level_id &dest, const item_def &i);
// Places (some of the) monsters eligible to be placed on this level.