mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
12 lines
281 B
C
12 lines
281 B
C
|
#include "Component.h"
|
||
|
|
||
|
#include "eReplicaComponentType.h"
|
||
|
|
||
|
class Entity;
|
||
|
|
||
|
class MinigameControlComponent : public Component {
|
||
|
public:
|
||
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::MINIGAME_CONTROL;
|
||
|
MinigameControlComponent(Entity* parent);
|
||
|
};
|