mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
19 lines
397 B
C++
19 lines
397 B
C++
/*
|
|
* Darkflame Universe
|
|
* Copyright 2018
|
|
*/
|
|
|
|
#ifndef __PROPERTYCOMPONENT_H__
|
|
#define __PROPERTYCOMPONENT_H__
|
|
|
|
#include "Component.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class PropertyComponent : public Component {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::PROPERTY;
|
|
PropertyComponent(Entity* parentEntity);
|
|
};
|
|
|
|
#endif // __PROPERTYCOMPONENT_H__
|