mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
16 lines
421 B
C++
16 lines
421 B
C++
#ifndef __MINIGAMECONTROLCOMPONENT__H__
|
|
#define __MINIGAMECONTROLCOMPONENT__H__
|
|
|
|
#include "ActivityComponent.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class Entity;
|
|
|
|
class MinigameControlComponent : public ActivityComponent {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::MINIGAME_CONTROL;
|
|
MinigameControlComponent(Entity* parent);
|
|
};
|
|
|
|
#endif //!__MINIGAMECONTROLCOMPONENT__H__
|