mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
fd182d222f
Hopefully not going to rename them for a third time, no way
19 lines
430 B
C++
19 lines
430 B
C++
|
|
#ifndef __SCRIPTEDACTIVITYCOMPONENT__H__
|
|
#define __SCRIPTEDACTIVITYCOMPONENT__H__
|
|
|
|
#include "ActivityComponent.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class Entity;
|
|
|
|
class ScriptedActivityComponent : public ActivityComponent {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::SCRIPTED_ACTIVITY;
|
|
ScriptedActivityComponent(Entity* parent);
|
|
};
|
|
|
|
#endif //!__SCRIPTEDACTIVITYCOMPONENT__H__
|
|
|
|
|