]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/HeroTag.h
removed unneccessary destructor in HeroTag
[l2e.git] / src / battle / HeroTag.h
index c21f8570b63c5de5b2668502f3e876f9c806fd80..f1408fd1882b6c5b0dfb413ba37a24702e617f7f 100644 (file)
@@ -28,10 +28,9 @@ class BattleState;
 class HeroTag {
 
 public:
-       HeroTag() : battle(0), index(0) { };
+       HeroTag() : battle(0), index(0) { }
        HeroTag(const BattleState *battle, int heroIndex)
        : battle(battle), index(heroIndex) { }
-       ~HeroTag() { }
 
 public:
        const graphics::Sprite *HeroSprite() const;