mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-04 18:55:05 +00:00
13 lines
286 B
C++
13 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
|