prime/include/MetroidPrime/CCharAnimTime.hpp
Luke Street 234afca6c2 clang-format pass
Former-commit-id: 6a979e343f6a88e4c9b78d3917c1fabfcb211a0a
2022-09-18 02:05:46 -04:00

23 lines
309 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