]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Animation/Joint.h
Replaced muscles and joints in Skeleton by vectors
[lugaru.git] / Source / Animation / Joint.h
index 9073e7af081ae41109194effd016e91ac1b49f42..764b095de9ff44d69c7ef48f89f2b45be573c89d 100644 (file)
@@ -22,6 +22,7 @@ along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 #define _JOINT_H_
 
 #include "Quaternions.h"
+#include <vector>
 
 class Joint
 {
@@ -48,6 +49,7 @@ public:
     XYZ velchange;
 
     Joint();
+    void load(FILE* tfile, std::vector<Joint>& joints);
 };
 
 #endif