mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-07-07 04:00:02 +00:00
16 lines
473 B
C++
16 lines
473 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, int activityID) : ActivityComponent(parent, activityID){};
|
|
};
|
|
|
|
#endif //!SCRIPTEDACTIVITYCOMPONENT_H
|