X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FAnimation%2FSkeleton.h;h=f94b2417616577d210e46f3afa5b63ed7f38b6a3;hb=1991e81a5c3bcc9cd0d6d49f56ebd8bcbd76e7b4;hp=fe1ceb1106035bfc59f1bc9da76999152dd20ebe;hpb=18e718d3ff51c67029f2d4e1416f979b9ad3afc0;p=lugaru.git diff --git a/Source/Animation/Skeleton.h b/Source/Animation/Skeleton.h index fe1ceb1..f94b241 100644 --- a/Source/Animation/Skeleton.h +++ b/Source/Animation/Skeleton.h @@ -47,15 +47,9 @@ const int max_joints = 50; class Skeleton { public: - int num_joints; - //Joint joints[max_joints]; - //Joint *joints; - Joint* joints; - - int num_muscles; - //Muscle muscles[max_muscles]; - //Muscle *muscles; - Muscle* muscles; + std::vector joints; + + std::vector muscles; int selected;