2023-06-23 15:30:03 +00:00
|
|
|
#ifndef __MINIGAMECONTROLCOMPONENT__H__
|
|
|
|
#define __MINIGAMECONTROLCOMPONENT__H__
|
2023-06-09 11:02:40 +00:00
|
|
|
|
2023-06-23 15:30:03 +00:00
|
|
|
#include "ActivityComponent.h"
|
2023-06-09 11:02:40 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
|
|
|
|
|
|
|
class Entity;
|
|
|
|
|
2023-06-23 15:30:03 +00:00
|
|
|
class MinigameControlComponent : public ActivityComponent {
|
2023-06-09 11:02:40 +00:00
|
|
|
public:
|
|
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::MINIGAME_CONTROL;
|
|
|
|
MinigameControlComponent(Entity* parent);
|
|
|
|
};
|
2023-06-23 15:30:03 +00:00
|
|
|
|
|
|
|
#endif //!__MINIGAMECONTROLCOMPONENT__H__
|