]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Stats.h
added constructors for described types
[l2e.git] / src / battle / Stats.h
index ae885bf4aa6021a01d02ad244757f9be856eb5cb..e53111d70df8e2f3169be0b0cddd8bee639b6bad 100644 (file)
@@ -35,14 +35,17 @@ public:
        void SetGut(Uint8 g) { gut = g; }
        void SetMagicResistance(Uint16 m) { magicResistance = m; }
 
+       static void CreateTypeDescription();
+       static void Construct(void *);
+
 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;
 
 };