DarkflameServer/dGame/dComponents/ActivityComponent.h

18 lines
363 B
C
Raw Normal View History

2023-06-23 15:30:03 +00:00
#ifndef __ACTIVITYCOMPONENT__H__
#define __ACTIVITYCOMPONENT__H__
#include "Component.h"
#include "eReplicaComponentType.h"
class Entity;
class ActivityComponent : public Component {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::INVALID;
ActivityComponent(Entity* parent);
};
#endif //!__ACTIVITYCOMPONENT__H__