mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-07-07 04:00:02 +00:00
15 lines
377 B
C++
15 lines
377 B
C++
#ifndef RACINGSTATSCOMPONENT_H
|
|
#define RACINGSTATSCOMPONENT_H
|
|
|
|
#include "Component.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class RacingStatsComponent final : public Component {
|
|
public:
|
|
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::RACING_STATS;
|
|
|
|
RacingStatsComponent(Entity* parent) : Component(parent) {}
|
|
};
|
|
|
|
#endif //!RACINGSTATSCOMPONENT_H
|