mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 22:17:31 +00:00
17 lines
385 B
C
17 lines
385 B
C
|
#ifndef __RACINGCOMPONENT__H__
|
||
|
#define __RACINGCOMPONENT__H__
|
||
|
|
||
|
#include "RacingControlComponent.h"
|
||
|
#include "eReplicaComponentType.h"
|
||
|
|
||
|
class Entity;
|
||
|
|
||
|
class RacingComponent : public RacingControlComponent {
|
||
|
public:
|
||
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::RACING_CONTROL;
|
||
|
RacingComponent(Entity* parent);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //!__RACINGCOMPONENT__H__
|