metaforce/Runtime/World/CAnimationParameters.hpp

22 lines
421 B
C++
Raw Normal View History

2016-04-18 05:33:23 +00:00
#ifndef __URDE_CANIMATIONPARAMETERS_HPP__
#define __URDE_CANIMATIONPARAMETERS_HPP__
#include "RetroTypes.hpp"
namespace urde
{
class CAnimationParameters
{
2016-04-19 00:17:49 +00:00
public:
2016-04-18 05:33:23 +00:00
ResId x0_ancs;
s32 x4_charIdx;
u32 x8_defaultAnim;
CAnimationParameters(ResId ancs, s32 charIdx, u32 defaultAnim)
: x0_ancs(ancs), x4_charIdx(charIdx), x8_defaultAnim(defaultAnim) {}
};
}
#endif // __URDE_CANIMATIONPARAMETERS_HPP__