2023-06-23 15:30:03 +00:00
|
|
|
#ifndef __GATERUSHCONTROLCOMPONENT__H__
|
|
|
|
#define __GATERUSHCONTROLCOMPONENT__H__
|
|
|
|
|
2023-06-26 05:00:01 +00:00
|
|
|
#include "RacingControlComponent.h"
|
2023-06-23 15:30:03 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
|
|
|
|
|
|
|
class Entity;
|
|
|
|
|
2023-07-05 05:38:35 +00:00
|
|
|
class GateRushComponent final : public RacingControlComponent {
|
2023-06-23 15:30:03 +00:00
|
|
|
public:
|
|
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::GATE_RUSH_CONTROL;
|
2023-06-27 05:39:15 +00:00
|
|
|
GateRushComponent(Entity* parent, int32_t componentId);
|
2023-06-23 15:30:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //!__GATERUSHCONTROLCOMPONENT__H__
|