mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 20:55:17 +00:00
14 lines
269 B
C
14 lines
269 B
C
|
#pragma once
|
||
|
|
||
|
#include "NerveStateBase.h"
|
||
|
#include "al/LiveActor/LiveActor.h"
|
||
|
|
||
|
namespace al {
|
||
|
class ActorStateBase : public al::NerveStateBase {
|
||
|
public:
|
||
|
ActorStateBase(const char*, al::LiveActor*);
|
||
|
|
||
|
protected:
|
||
|
LiveActor* mLiveActor;
|
||
|
};
|
||
|
}
|