DarkflameServer/dGame/dComponents/RacingStatsComponent.h
David Markowitz 5da776a084 Add blank classes for some Components
Racing Stats

Minigame Control
2023-06-09 04:02:40 -07:00

12 lines
269 B
C++

#include "Component.h"
#include "eReplicaComponentType.h"
class Entity;
class RacingStatsComponent : public Component {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::RACING_STATS;
RacingStatsComponent(Entity* parent);
};