2023-12-05 02:59:08 +00:00
|
|
|
#ifndef __MINIGAMECONTROLCOMPONENT__H__
|
|
|
|
#define __MINIGAMECONTROLCOMPONENT__H__
|
|
|
|
|
|
|
|
#include "Component.h"
|
|
|
|
#include "eReplicaComponentType.h"
|
|
|
|
|
|
|
|
class MiniGameControlComponent final : public Component {
|
|
|
|
public:
|
2024-01-24 05:13:23 +00:00
|
|
|
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::MINI_GAME_CONTROL;
|
2023-12-05 02:59:08 +00:00
|
|
|
|
|
|
|
MiniGameControlComponent(Entity* parent) : Component(parent) {}
|
2024-02-27 07:25:44 +00:00
|
|
|
void Serialize(RakNet::BitStream& outBitStream, bool isConstruction);
|
2023-12-05 02:59:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //!__MINIGAMECONTROLCOMPONENT__H__
|