SuperMarioOdysseyOnline/include/al/LiveActor/LiveActorGroup.h

21 lines
396 B
C++

#pragma once
#include "al/hio/HioNode.h"
namespace al
{
class LiveActor;
class LiveActorGroup : public al::HioNode
{
public:
LiveActorGroup(const char *, int);
virtual void registerActor(al::LiveActor *);
const char* mGroupName; // _8
int mMaxActorCount; // _10
int mActorCount; // _14
al::LiveActor** mActors; // _18
};
};