summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monster.h
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-11-12 01:05:50 -0800
committerStefan O'Rear <stefanor@cox.net>2009-11-12 01:05:50 -0800
commit0f338eb725f33ee68843fb3bc178bfd9bc65cb22 (patch)
tree6c4ef451572f2324f9f65ab8063c94e8f840bc2c /crawl-ref/source/monster.h
parent9f7066eab03883b18610a629a3a84731cd26ca13 (diff)
downloadcrawl-ref-0f338eb725f33ee68843fb3bc178bfd9bc65cb22.tar.gz
crawl-ref-0f338eb725f33ee68843fb3bc178bfd9bc65cb22.zip
Add a CrawlHashTable to monster objects
Diffstat (limited to 'crawl-ref/source/monster.h')
-rw-r--r--crawl-ref/source/monster.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/monster.h b/crawl-ref/source/monster.h
index 26b266ee37..83e9f779d1 100644
--- a/crawl-ref/source/monster.h
+++ b/crawl-ref/source/monster.h
@@ -60,6 +60,7 @@ public:
void reset();
public:
+ // Possibly some of these should be moved into the hash table
std::string mname;
monster_type type;
@@ -102,6 +103,8 @@ public:
std::string seen_context; // Non-standard context for
// AI_SEE_MONSTER
+ CrawlHashTable props;
+
public:
mon_attitude_type temp_attitude() const;