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,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);
};