mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-18 01:05:13 +00:00
14 lines
No EOL
269 B
C++
14 lines
No EOL
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;
|
|
};
|
|
} |