prime/include/MetroidPrime/CCharAnimTime.hpp

23 lines
321 B
C++
Raw Normal View History

#ifndef _CCHARANIMTIME
#define _CCHARANIMTIME
#include "types.h"
class CCharAnimTime {
public:
enum EType {
kT_NonZero,
kT_ZeroIncreasing,
kT_ZeroSteady,
kT_ZeroDecreasing,
kT_Infinity,
};
private:
float x0_time;
EType x4_type;
};
CHECK_SIZEOF(CCharAnimTime, 0x8)
#endif // _CCHARANIMTIME