summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/store.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/store.h
parenta49e4492fc269271c7809d2caeb1e4d80bb0b7bf (diff)
downloadcrawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.tar.gz
crawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.zip
Rename class "monsters" to "monster".
Diffstat (limited to 'crawl-ref/source/store.h')
-rw-r--r--crawl-ref/source/store.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/store.h b/crawl-ref/source/store.h
index 430f64f3a9..8302ab56e1 100644
--- a/crawl-ref/source/store.h
+++ b/crawl-ref/source/store.h
@@ -22,7 +22,7 @@ struct coord_def;
struct level_pos;
class level_id;
class dlua_chunk;
-class monsters;
+class monster;
typedef uint8_t hash_size;
typedef uint8_t vec_size;
@@ -98,7 +98,7 @@ public:
CrawlStoreValue(const CrawlVector &val);
CrawlStoreValue(const level_id &val);
CrawlStoreValue(const level_pos &val);
- CrawlStoreValue(const monsters &val);
+ CrawlStoreValue(const monster& val);
CrawlStoreValue(const dlua_chunk &val);
CrawlStoreValue &operator = (const CrawlStoreValue &other);
@@ -133,7 +133,7 @@ public:
item_def &get_item();
level_id &get_level_id();
level_pos &get_level_pos();
- monsters &get_monster();
+ monster &get_monster();
dlua_chunk &get_lua();
bool get_bool() const;
@@ -149,7 +149,7 @@ public:
const CrawlHashTable& get_table() const;
const CrawlVector& get_vector() const;
const item_def& get_item() const;
- const monsters& get_monster() const;
+ const monster& get_monster() const;
const dlua_chunk& get_lua() const;
#if 0
@@ -196,7 +196,7 @@ public:
operator item_def&();
operator level_id&();
operator level_pos&();
- operator monsters&();
+ operator monster& ();
operator dlua_chunk&();
operator bool() const;
@@ -223,7 +223,7 @@ public:
CrawlStoreValue &operator = (const item_def &val);
CrawlStoreValue &operator = (const level_id &val);
CrawlStoreValue &operator = (const level_pos &val);
- CrawlStoreValue &operator = (const monsters &val);
+ CrawlStoreValue &operator = (const monster& val);
CrawlStoreValue &operator = (const dlua_chunk &val);
// Misc operators