mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
16 lines
466 B
C++
16 lines
466 B
C++
#ifndef __ZONECONTROLCOMPONENT__H__
|
|
#define __ZONECONTROLCOMPONENT__H__
|
|
|
|
#include "Component.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class ZoneControlComponent final : public Component {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::ZONE_CONTROL;
|
|
|
|
ZoneControlComponent(Entity* parent) : Component(parent) {}
|
|
void Serialize(RakNet::BitStream* outBitStream, bool isConstruction);
|
|
};
|
|
|
|
#endif //!__ZONECONTROLCOMPONENT__H__
|