mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
2abcb142ad
- Pass componentID to activity component constructor - use int componentid so -1 can denote no component
16 lines
439 B
C++
16 lines
439 B
C++
#ifndef __GATERUSHCONTROLCOMPONENT__H__
|
|
#define __GATERUSHCONTROLCOMPONENT__H__
|
|
|
|
#include "RacingControlComponent.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class Entity;
|
|
|
|
class GateRushComponent : public RacingControlComponent {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::GATE_RUSH_CONTROL;
|
|
GateRushComponent(Entity* parent, int32_t componentId);
|
|
};
|
|
|
|
#endif //!__GATERUSHCONTROLCOMPONENT__H__
|