Add blank classes for some Components

Racing Stats

Minigame Control
This commit is contained in:
David Markowitz 2023-06-09 04:02:40 -07:00
parent 6f057204be
commit 5da776a084
4 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#include "MinigameControlComponent.h"
#include "Entity.h"
MinigameControlComponent::MinigameControlComponent(Entity* parent) : Component(parent) {
}

View File

@ -0,0 +1,11 @@
#include "Component.h"
#include "eReplicaComponentType.h"
class Entity;
class MinigameControlComponent : public Component {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::MINIGAME_CONTROL;
MinigameControlComponent(Entity* parent);
};

View File

@ -0,0 +1,7 @@
#include "RacingStatsComponent.h"
#include "Entity.h"
RacingStatsComponent::RacingStatsComponent(Entity* parent) : Component(parent) {
}

View File

@ -0,0 +1,11 @@
#include "Component.h"
#include "eReplicaComponentType.h"
class Entity;
class RacingStatsComponent : public Component {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::RACING_STATS;
RacingStatsComponent(Entity* parent);
};