mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
15 lines
395 B
C++
15 lines
395 B
C++
#ifndef __RACINGSTATSCOMPONENT__H__
|
|
#define __RACINGSTATSCOMPONENT__H__
|
|
|
|
#include "Component.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class RacingStatsComponent final : public Component {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::RACING_STATS;
|
|
|
|
RacingStatsComponent(Entity* parent) : Component(parent) {}
|
|
};
|
|
|
|
#endif //!__RACINGSTATSCOMPONENT__H__
|