mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-24 15:52:32 +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);
|
|
};
|