mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 04:35:17 +00:00
21 lines
No EOL
396 B
C++
21 lines
No EOL
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
|
|
};
|
|
}; |