diff options
author | Lloyd Bryant <lloyd_bryant@netzero.net> | 2008-08-29 21:13:19 +0000 |
---|---|---|
committer | Lloyd Bryant <lloyd_bryant@netzero.net> | 2008-08-29 21:13:19 +0000 |
commit | c43c4cfc69133c1d1da4e89c3879b96d8edfa981 (patch) | |
tree | 3a15cf416c55fb30429ed77ad698fd17027ebd88 /src/resources/monsterinfo.h | |
parent | af742ceb85512edd1d6883a5ea4f4188e64725be (diff) | |
download | mana-c43c4cfc69133c1d1da4e89c3879b96d8edfa981.tar.gz mana-c43c4cfc69133c1d1da4e89c3879b96d8edfa981.tar.bz2 mana-c43c4cfc69133c1d1da4e89c3879b96d8edfa981.tar.xz mana-c43c4cfc69133c1d1da4e89c3879b96d8edfa981.zip |
Committed complex (multi-sprite) monster patch - from TMW Mantis, by Jaxad0127
Diffstat (limited to 'src/resources/monsterinfo.h')
-rw-r--r-- | src/resources/monsterinfo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/monsterinfo.h b/src/resources/monsterinfo.h index d9d17510..2f690756 100644 --- a/src/resources/monsterinfo.h +++ b/src/resources/monsterinfo.h @@ -63,7 +63,7 @@ class MonsterInfo setName(std::string name) { mName = name; } void - setSprite(std::string filename) { mSprite = filename; } + addSprite(std::string filename) { mSprites.push_back(filename); } void setTargetCursorSize(Being::TargetCursorSize targetCursorSize) @@ -78,8 +78,8 @@ class MonsterInfo const std::string& getName() const { return mName; } - const std::string& - getSprite() const { return mSprite; } + const std::list<std::string>& + getSprites() const { return mSprites; } Being::TargetCursorSize getTargetCursorSize() const { return mTargetCursorSize; } @@ -92,7 +92,7 @@ class MonsterInfo private: std::string mName; - std::string mSprite; + std::list<std::string> mSprites; Being::TargetCursorSize mTargetCursorSize; std::map<MonsterSoundEvent, std::vector<std::string>* > mSounds; std::list<std::string> mParticleEffects; |