DarkflameServer/dGame/dComponents/GateRushComponent.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
445 B
C
Raw Normal View History

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