scaffold activity based components

This commit is contained in:
Aaron Kimbre
2023-06-23 10:30:03 -05:00
parent c78760db59
commit f27e0400e7
17 changed files with 105 additions and 15 deletions

View File

@@ -1,11 +1,15 @@
#include "Component.h"
#ifndef __MINIGAMECONTROLCOMPONENT__H__
#define __MINIGAMECONTROLCOMPONENT__H__
#include "ActivityComponent.h"
#include "eReplicaComponentType.h"
class Entity;
class MinigameControlComponent : public Component {
class MinigameControlComponent : public ActivityComponent {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::MINIGAME_CONTROL;
MinigameControlComponent(Entity* parent);
};
#endif //!__MINIGAMECONTROLCOMPONENT__H__