DarkflameServer/dGame/dComponents/RacingStatsComponent.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

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