mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +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__
|