diff options
Diffstat (limited to 'src/Skeleton.h')
-rw-r--r-- | src/Skeleton.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/Skeleton.h b/src/Skeleton.h index d28494d..35bdb43 100644 --- a/src/Skeleton.h +++ b/src/Skeleton.h @@ -85,20 +85,15 @@ class Animation { public: Files files; - int numframes; + size_t numframes; bool canbeoverridden; bool ismodified[max_joints][max_frames]; - XYZ position[max_joints][max_frames]; - float twist[max_joints][max_frames]; - float twist2[max_joints][max_frames]; + XYZ position[max_joints][max_frames]; float speed[max_frames]; - float gunrotation[max_frames]; - bool onground[max_joints][max_frames]; XYZ forward[max_frames]; float rotate1[max_joints][max_frames],rotate2[max_joints][max_frames],rotate3[max_joints][max_frames]; float mrotate1[max_joints][max_frames],mrotate2[max_joints][max_frames],mrotate3[max_joints][max_frames]; - void Load(char *fileName); - void Load(char *fileName,float rotate); + void load(const char* name); }; class Skeleton |