mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
ec9278286b
- Remove use of Base. It is implied if you inherit that the class inherited from is a Base. - Fix compilation errors from said change.
17 lines
447 B
C++
17 lines
447 B
C++
#ifndef __RACINGCONTROLCOMPONENT__H__
|
|
#define __RACINGCONTROLCOMPONENT__H__
|
|
|
|
#include "ScriptedActivityComponent.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class Entity;
|
|
|
|
class RacingControlComponent : public ScriptedActivityComponent {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::RACING_CONTROL;
|
|
RacingControlComponent(Entity* parent, int32_t componentId);
|
|
};
|
|
|
|
|
|
#endif //!__RACINGCONTROLCOMPONENT__H__
|