mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 00:27:42 +00:00
ScriptLoader support imps
This commit is contained in:
21
Runtime/World/CAnimationParameters.hpp
Normal file
21
Runtime/World/CAnimationParameters.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef __URDE_CANIMATIONPARAMETERS_HPP__
|
||||
#define __URDE_CANIMATIONPARAMETERS_HPP__
|
||||
|
||||
#include "RetroTypes.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CAnimationParameters
|
||||
{
|
||||
ResId x0_ancs;
|
||||
s32 x4_charIdx;
|
||||
u32 x8_defaultAnim;
|
||||
public:
|
||||
CAnimationParameters(ResId ancs, s32 charIdx, u32 defaultAnim)
|
||||
: x0_ancs(ancs), x4_charIdx(charIdx), x8_defaultAnim(defaultAnim) {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __URDE_CANIMATIONPARAMETERS_HPP__
|
||||
Reference in New Issue
Block a user