2021-12-05 17:54:36 +00:00
|
|
|
/*
|
|
|
|
* Darkflame Universe
|
|
|
|
* Copyright 2018
|
|
|
|
*/
|
|
|
|
|
2023-07-10 05:41:22 +00:00
|
|
|
#ifndef __PROPERTYCOMPONENT_H__
|
|
|
|
#define __PROPERTYCOMPONENT_H__
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
#include "Component.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
class PropertyComponent : public Component {
|
|
|
|
public:
|
2023-06-09 08:22:45 +00:00
|
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::PROPERTY;
|
2023-07-10 05:41:22 +00:00
|
|
|
PropertyComponent(Entity* parentEntity);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2023-07-10 05:41:22 +00:00
|
|
|
#endif // __PROPERTYCOMPONENT_H__
|