DarkflameServer/dGame/dComponents/ScriptedActivityComponent.h

19 lines
451 B
C
Raw Normal View History

#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, int32_t componentId);
};
2022-07-28 13:39:57 +00:00
#endif //!__SCRIPTEDACTIVITYCOMPONENT__H__