Update activing and racing components

Hopefully not going to rename them for a third time, no way
This commit is contained in:
Aaron Kimbre
2023-06-26 15:06:33 -05:00
parent 68f90b7136
commit fd182d222f
22 changed files with 2175 additions and 2176 deletions

View File

@@ -0,0 +1,15 @@
#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);
};
#endif //!__GATERUSHCONTROLCOMPONENT__H__