]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Stats.h
removed type resolution from Animation::addFields
[l2e.git] / src / battle / Stats.h
index ae885bf4aa6021a01d02ad244757f9be856eb5cb..5f0d17d8efc997353181b05374b4b333a6b7dea8 100644 (file)
@@ -35,14 +35,16 @@ public:
        void SetGut(Uint8 g) { gut = g; }
        void SetMagicResistance(Uint16 m) { magicResistance = m; }
 
+       static void CreateTypeDescription();
+
 private:
-       Uint16 attack;
-       Uint16 defense;
-       Uint16 strength;
-       Uint16 agility;
-       Uint16 intelligence;
-       Uint16 magicResistance;
-       Uint8 gut;
+       int attack;
+       int defense;
+       int strength;
+       int agility;
+       int intelligence;
+       int magicResistance;
+       int gut;
 
 };