DRG-Femboy-Voice/Source/FSD/Public/AnimNotify_PushSoundMix.h
2025-04-15 12:39:31 -07:00

20 lines
530 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Animation/AnimNotifies/AnimNotify.h"
#include "AnimNotify_PushSoundMix.generated.h"
class USoundMix;
UCLASS(Blueprintable, CollapseCategories)
class UAnimNotify_PushSoundMix : public UAnimNotify {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USoundMix* SoundMix;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float MaxDistance;
UAnimNotify_PushSoundMix();
};