2023-06-26 05:00:01 +00:00
|
|
|
#ifndef __RACINGCONTROLCOMPONENT__H__
|
|
|
|
#define __RACINGCONTROLCOMPONENT__H__
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-06-26 05:00:01 +00:00
|
|
|
#include "ScriptedActivityComponent.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-06-26 05:00:01 +00:00
|
|
|
class Entity;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2023-06-26 05:00:01 +00:00
|
|
|
class RacingControlComponent : public ScriptedActivityComponent {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-06-09 08:22:45 +00:00
|
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::RACING_CONTROL;
|
2023-06-26 05:00:01 +00:00
|
|
|
RacingControlComponent(Entity* parent, int32_t componentId);
|
|
|
|
};
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2023-05-09 05:40:00 +00:00
|
|
|
|
2023-06-26 05:00:01 +00:00
|
|
|
#endif //!__RACINGCONTROLCOMPONENT__H__
|