mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
14 lines
286 B
C
14 lines
286 B
C
|
#pragma once
|
||
|
|
||
|
#include "NerveStateBase.h"
|
||
|
|
||
|
namespace al
|
||
|
{
|
||
|
template <class T>
|
||
|
class HostStateBase : public NerveStateBase {
|
||
|
public:
|
||
|
HostStateBase(const char* name, T *host) : NerveStateBase(name), mHost(host){};
|
||
|
T *mHost;
|
||
|
};
|
||
|
} // namespace al
|