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

21 lines
447 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "AudioWithCooldown.generated.h"
class USoundCue;
USTRUCT(BlueprintType)
struct FAudioWithCooldown {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USoundCue* audio;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float CoolDown;
public:
FSD_API FAudioWithCooldown();
};