DarkflameServer/dGame/dComponents/RacingComponent.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
406 B
C
Raw Normal View History

#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, int32_t componentId);
};
#endif //!__RACINGCOMPONENT__H__