X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=blobdiff_plain;f=Source%2FObjects%2FPerson.hpp;h=856f050fee4d4f07713670cefea2e24be25009cb;hp=57f3ebb1f49bc5a7bf7221e061f1488ddc472e4e;hb=9981ce00aba99f97ecca8ff7e9331c3a11d8c1be;hpb=1af110c0668ca55a6b0cbdbe5fd356cd8877086f diff --git a/Source/Objects/Person.hpp b/Source/Objects/Person.hpp index 57f3ebb..856f050 100644 --- a/Source/Objects/Person.hpp +++ b/Source/Objects/Person.hpp @@ -23,6 +23,7 @@ along with Lugaru. If not, see . #include "Animation/Animation.hpp" #include "Animation/Skeleton.hpp" +#include "Audio/Sounds.hpp" #include "Environment/Terrain.hpp" #include "Graphic/gamegl.hpp" #include "Graphic/Models.hpp" @@ -60,6 +61,15 @@ class PersonType public: // head, body, arms, legs XYZ proportions[4]; + animation_type animRun; + animation_type animRunning; + animation_type animCrouch; + animation_type animStop; + animation_type animLanding; + animation_type animLandingHard; + sound_type soundsAttack[4]; + sound_type soundsTalk[2]; + static std::vector types; static void Load(); };