mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-15 05:11:21 +00:00
22 lines
308 B
C++
22 lines
308 B
C++
#ifndef _CCHARANIMTIME_HPP
|
|
#define _CCHARANIMTIME_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CCharAnimTime {
|
|
public:
|
|
enum EType {
|
|
kT_NonZero,
|
|
kT_ZeroIncreasing,
|
|
kT_ZeroSteady,
|
|
kT_ZeroDecreasing,
|
|
kT_Infinity,
|
|
};
|
|
|
|
private:
|
|
f32 x0_time;
|
|
EType x4_type;
|
|
};
|
|
CHECK_SIZEOF(CCharAnimTime, 0x8)
|
|
|
|
#endif |