2021-12-05 17:54:36 +00:00
|
|
|
/*
|
|
|
|
* Darkflame Universe
|
2024-01-31 14:38:38 +00:00
|
|
|
* Copyright 2024
|
2021-12-05 17:54:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROPERTYCOMPONENT_H
|
|
|
|
#define PROPERTYCOMPONENT_H
|
|
|
|
|
|
|
|
#include "Entity.h"
|
|
|
|
#include "Component.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This component is unused and has no functionality
|
|
|
|
*/
|
2024-01-24 05:13:23 +00:00
|
|
|
class PropertyComponent final : public Component {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2024-01-24 05:13:23 +00:00
|
|
|
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::PROPERTY;
|
2024-01-31 14:38:38 +00:00
|
|
|
explicit PropertyComponent(Entity* const parentEntity) noexcept : Component{ parentEntity } {}
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2024-01-31 14:38:38 +00:00
|
|
|
#endif // !PROPERTYCOMPONENT_H
|