DarkflameServer/dGame/dComponents/BaseRacingControlComponent.h
David Markowitz 9121bf41c5 Entity work
- Add in bool cheks
- Fix component class files so they compile and link
- Fin inheritance
2023-06-25 21:47:35 -07:00

17 lines
467 B
C++

#ifndef __BASERACINGCONTROLCOMPONENT__H__
#define __BASERACINGCONTROLCOMPONENT__H__
#include "ScriptedActivityComponent.h"
#include "eReplicaComponentType.h"
class Entity;
class BaseRacingControlComponent : public ScriptedActivityComponent {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::RACING_CONTROL;
BaseRacingControlComponent(Entity* parent, int32_t componentId);
};
#endif //!__BASERACINGCONTROLCOMPONENT__H__