mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
9655f0ee45
fix compile issues
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
|