mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
17 lines
446 B
C++
17 lines
446 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);
|
|
};
|
|
|
|
|
|
#endif //!__BASERACINGCONTROLCOMPONENT__H__
|