mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
12 lines
269 B
C
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);
|
||
|
};
|