Files
DarkflameServer/dGame/dComponents/PropertyComponent.h
2025-10-03 20:57:42 -05:00

23 lines
564 B
C++

/*
* Darkflame Universe
* Copyright 2024
*/
#ifndef PROPERTYCOMPONENT_H
#define PROPERTYCOMPONENT_H
#include "Entity.h"
#include "Component.h"
#include "eReplicaComponentType.h"
/**
* This component is unused and has no functionality
*/
class PropertyComponent final : public Component {
public:
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::PROPERTY;
explicit PropertyComponent(Entity* const parentEntity, const int32_t componentID) noexcept : Component{ parentEntity, componentID } {}
};
#endif // !PROPERTYCOMPONENT_H