mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-12-01 15:37:29 +00:00
21 lines
396 B
C
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
|
||
|
};
|
||
|
};
|