7051cf1a创建于 3月27日历史提交
#ifndef ANIMATION_H
#define ANIMATION_H

#include "prop.h"
size_t  anim_getSize(void);
enum asset_e  anim_getIndex(Animation *self);
f32  anim_getTimer(Animation *self);
f32  anim_getDuration(Animation *self);
void anim_new(Animation *self, bool arg1);
void anim_setTimer(Animation *self, f32 arg1);
void anim_80289790(Animation* self, GenFunction_2 arg1);
void anim_80289798(Animation *self, uintptr_t arg1);
void anim_setDuration(Animation *self, f32 arg1);

//represents the transformation on a given model bone


typedef union
{
    struct{
        u16 unk0_15: 1;
        u16 unk0_14: 1;
        u16 unk0_13: 14;
        s16 unk2;
    };
}AnimationFileData;


typedef struct animation_file_elem_s{
    u16 unk0_15:12;
    u16 unk0_3:4;
    s16 data_cnt;
    AnimationFileData data[];
}AnimationFileElement;

typedef struct animation_file_s{ 
    s16 unk0;
    s16 unk2;
    s16 elem_cnt;
    u8  pad6[2];
} AnimationFile;



#endif