diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-18 21:48:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-18 21:48:00 +0300 |
commit | 108f82f16f56e5fcc0f92e7233d378e559779e74 (patch) | |
tree | bff7840cccdd533fd2957318f6d7bb5f8320761d /src/resources/beinginfo.h | |
parent | 55ff7fa3903b470ea7b4c74fb371252ec67e5e33 (diff) | |
download | plus-108f82f16f56e5fcc0f92e7233d378e559779e74.tar.gz plus-108f82f16f56e5fcc0f92e7233d378e559779e74.tar.bz2 plus-108f82f16f56e5fcc0f92e7233d378e559779e74.tar.xz plus-108f82f16f56e5fcc0f92e7233d378e559779e74.zip |
Move attack into separate file.
Diffstat (limited to 'src/resources/beinginfo.h')
-rw-r--r-- | src/resources/beinginfo.h | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h index 62ad7eaf9..27d36e2a3 100644 --- a/src/resources/beinginfo.h +++ b/src/resources/beinginfo.h @@ -36,34 +36,7 @@ #include <map> -struct Attack final -{ - std::string mAction; - std::string mSkyAction; - std::string mWaterAction; - int mEffectId; - int mHitEffectId; - int mCriticalHitEffectId; - int mMissEffectId; - std::string mMissileParticle; - - Attack(const std::string &action, const std::string &skyAction, - const std::string &waterAction, const int effectId, - const int hitEffectId, const int criticalHitEffectId, - const int missEffectId, const std::string &missileParticle) : - mAction(action), - mSkyAction(skyAction), - mWaterAction(waterAction), - mEffectId(effectId), - mHitEffectId(hitEffectId), - mCriticalHitEffectId(criticalHitEffectId), - mMissEffectId(missEffectId), - mMissileParticle(missileParticle) - { - } - - A_DELETE_COPY(Attack) -}; +struct Attack; typedef std::map<int, Attack*> Attacks; |