mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
9121bf41c5
- Add in bool cheks - Fix component class files so they compile and link - Fin inheritance
17 lines
467 B
C++
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__
|