mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
16 lines
No EOL
291 B
C++
16 lines
No EOL
291 B
C++
#pragma once
|
|
|
|
|
|
#include "container/seadPtrArray.h"
|
|
namespace al {
|
|
struct SubActorInfo {
|
|
struct LiveActor* mActor;
|
|
void* unkPtr;
|
|
int unkInt;
|
|
};
|
|
|
|
class SubActorKeeper {
|
|
al::LiveActor* mRootActor;
|
|
sead::PtrArray<SubActorInfo> mArray;
|
|
};
|
|
} |