X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FObjects%2FPerson.hpp;h=4896cbd2e237c053ca5fec29763d7407c131d977;hb=3bc5ee099a4322252ae9afd564335b60856a0054;hp=d67c503219e8660987c1ac13958a1a478f30262c;hpb=8139604f6d9f7014ef516371895c72fabd55f828;p=lugaru.git diff --git a/Source/Objects/Person.hpp b/Source/Objects/Person.hpp index d67c503..4896cbd 100644 --- a/Source/Objects/Person.hpp +++ b/Source/Objects/Person.hpp @@ -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]; @@ -79,6 +83,11 @@ public: std::vector skins; + GLubyte bloodText[512 * 512 * 3] = { 0 }; + + PersonType(); + bool hasAnimTalkIdle(); + static std::vector types; static void Load(); };