Files
UnrealEngine/Engine/Plugins/Editor/EngineAssetDefinitions/Source/Private/AssetDefinition_HapticFeedbackEffectSoundWave.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
798 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Haptics/HapticFeedbackEffect_SoundWave.h"
#include "AssetDefinitionDefault.h"
#include "AssetDefinition_HapticFeedbackEffectSoundWave.generated.h"
UCLASS()
class UAssetDefinition_HapticFeedbackEffectSoundWave : public UAssetDefinitionDefault
{
GENERATED_BODY()
public:
// UAssetDefinition Begin
virtual FText GetAssetDisplayName() const override { return NSLOCTEXT("AssetTypeActions", "FAssetTypeActions_HapticFeedbackEffectSoundWave", "Haptic Feedback Sound Wave"); }
virtual FLinearColor GetAssetColor() const override { return FLinearColor(FColor(175, 0, 0)); }
virtual TSoftClassPtr<UObject> GetAssetClass() const override { return UHapticFeedbackEffect_SoundWave::StaticClass(); }
// UAssetDefinition End
};