DarkflameServer/dGame/dComponents/MiniGameControlComponent.h
Aaron Kimbre 4caed08ce4 WIP
2024-04-13 01:32:42 -05:00

14 lines
454 B
C++

#ifndef __MINIGAMECONTROLCOMPONENT__H__
#define __MINIGAMECONTROLCOMPONENT__H__
#include "ActivityComponent.h"
#include "eReplicaComponentType.h"
class MiniGameControlComponent final : public ActivityComponent {
public:
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::MINI_GAME_CONTROL;
MiniGameControlComponent(Entity* parent, LOT lot) : ActivityComponent(parent, lot) {}
};
#endif //!__MINIGAMECONTROLCOMPONENT__H__