2024-10-30 07:30:20 +00:00
|
|
|
#ifndef RACINGSOUNDTRIGGERCOMPONENT_H
|
|
|
|
#define RACINGSOUNDTRIGGERCOMPONENT_H
|
2023-08-06 20:38:12 +00:00
|
|
|
|
|
|
|
#include "SoundTriggerComponent.h"
|
|
|
|
#include "eReplicaComponentType.h"
|
|
|
|
|
|
|
|
class Entity;
|
|
|
|
|
|
|
|
class RacingSoundTriggerComponent : public SoundTriggerComponent {
|
|
|
|
public:
|
2024-01-24 05:13:23 +00:00
|
|
|
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::RACING_SOUND_TRIGGER;
|
2023-08-06 20:38:12 +00:00
|
|
|
RacingSoundTriggerComponent(Entity* parent) : SoundTriggerComponent(parent){};
|
|
|
|
};
|
|
|
|
|
2024-10-30 07:30:20 +00:00
|
|
|
#endif //!RACINGSOUNDTRIGGERCOMPONENT_H
|