2023-12-29 01:11:19 +00:00
|
|
|
#ifndef __SCRIPTEDACTIVITYCOMPONENT__H__
|
|
|
|
#define __SCRIPTEDACTIVITYCOMPONENT__H__
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-12-29 01:11:19 +00:00
|
|
|
#include "ActivityComponent.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-12-29 01:11:19 +00:00
|
|
|
class Entity;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2024-01-24 05:13:23 +00:00
|
|
|
class ScriptedActivityComponent final : public ActivityComponent {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2024-01-24 05:13:23 +00:00
|
|
|
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::SCRIPTED_ACTIVITY;
|
2023-12-29 01:11:19 +00:00
|
|
|
ScriptedActivityComponent(Entity* parent, int activityID) : ActivityComponent(parent, activityID){};
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2023-12-29 01:11:19 +00:00
|
|
|
#endif //!__SCRIPTEDACTIVITYCOMPONENT__H__
|