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

21 lines
531 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "InputCoreTypes.h"
#include "CustomKeyBinding.generated.h"
USTRUCT(BlueprintType)
struct FCustomKeyBinding {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FName ActionName;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 Index;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FKey Key;
FSD_API FCustomKeyBinding();
};