mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-10 17:38:08 +00:00
16 lines
500 B
C++
16 lines
500 B
C++
#ifndef __SCRIPTEDACTIVITYCOMPONENT__H__
|
|
#define __SCRIPTEDACTIVITYCOMPONENT__H__
|
|
|
|
#include "ActivityComponent.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class Entity;
|
|
|
|
class ScriptedActivityComponent final : public ActivityComponent {
|
|
public:
|
|
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::SCRIPTED_ACTIVITY;
|
|
ScriptedActivityComponent(Entity* parent, const int32_t componentID) : ActivityComponent(parent, componentID){};
|
|
};
|
|
|
|
#endif //!__SCRIPTEDACTIVITYCOMPONENT__H__
|