animation struct documentation

This commit is contained in:
Banjo Kazooie
2023-03-12 23:11:39 -05:00
parent 7dd7a0b60c
commit af75d8b32d
293 changed files with 2031 additions and 1986 deletions

View File

@@ -0,0 +1,15 @@
#ifndef _BONE_TRANSFORMATION_H_
#define _BONE_TRANSFORMATION_H_
#include <ultratypes.h>
typedef struct {
f32 unk0[4];
f32 scale[3];
f32 unk1C[3];
}BoneTransform;
typedef struct bone_transform_list_s{
BoneTransform *ptr;
s32 count;
}BoneTransformList;
#endif