mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-05 23:14:14 +00:00
23 lines
556 B
C++
23 lines
556 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
|
|
namespace al {
|
|
struct ActionAnimCtrlInfo;
|
|
class InitResourceDataAnim;
|
|
class Resource;
|
|
|
|
class InitResourceDataActionAnim {
|
|
public:
|
|
static InitResourceDataActionAnim* tryCreate(Resource*, const InitResourceDataAnim*,
|
|
const char*);
|
|
|
|
InitResourceDataActionAnim(Resource*, const InitResourceDataAnim*, const char* resourceYml);
|
|
void sortCtrlInfo();
|
|
|
|
private:
|
|
s32 mAnimInfoCount = 0;
|
|
ActionAnimCtrlInfo** mAnimInfos = nullptr;
|
|
};
|
|
} // namespace al
|