mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-10 17:38:08 +00:00
15 lines
432 B
C++
15 lines
432 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, const int32_t componentID) : Component(parent, componentID) {}
|
|
};
|
|
|
|
#endif //!__RACINGSTATSCOMPONENT__H__
|