DarkflameServer/dGame/dComponents/MinigameControlComponent.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
281 B
C
Raw Normal View History

#include "Component.h"
#include "eReplicaComponentType.h"
class Entity;
class MinigameControlComponent : public Component {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::MINIGAME_CONTROL;
MinigameControlComponent(Entity* parent);
};