mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
16 lines
440 B
C
16 lines
440 B
C
|
#ifndef __GATERUSHCONTROLCOMPONENT__H__
|
||
|
#define __GATERUSHCONTROLCOMPONENT__H__
|
||
|
|
||
|
#include "BaseRacingControlComponent.h"
|
||
|
#include "eReplicaComponentType.h"
|
||
|
|
||
|
class Entity;
|
||
|
|
||
|
class GateRushControlComponent : public BaseRacingControlComponent {
|
||
|
public:
|
||
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::GATE_RUSH_CONTROL;
|
||
|
GateRushControlComponent(Entity* parent);
|
||
|
};
|
||
|
|
||
|
#endif //!__GATERUSHCONTROLCOMPONENT__H__
|