]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Objects/Person.hpp
Moved more animation info to PersonType
[lugaru.git] / Source / Objects / Person.hpp
index 1b9a01c8f079b1d997f94b1eca7a2980302fa397..4896cbd2e237c053ca5fec29763d7407c131d977 100644 (file)
@@ -67,6 +67,10 @@ public:
     animation_type animStop;
     animation_type animLanding;
     animation_type animLandingHard;
+    animation_type animFightIdle;
+    animation_type animBounceIdle;
+    animation_type animTalkIdle;
+
     sound_type soundsAttack[4];
     sound_type soundsTalk[2];
 
@@ -77,6 +81,13 @@ public:
     std::string lowModelFileName;
     std::string modelClothesFileName;
 
+    std::vector<std::string> skins;
+
+    GLubyte bloodText[512 * 512 * 3] = { 0 };
+
+    PersonType();
+    bool hasAnimTalkIdle();
+
     static std::vector<PersonType> types;
     static void Load();
 };