DarkflameServer/dGame/dComponents/PropertyComponent.h
2023-07-09 22:41:22 -07:00

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__