mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
18 lines
363 B
C++
18 lines
363 B
C++
#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__
|
|
|
|
|