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

18 lines
467 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EPerkHUDActivationLocation.h"
#include "PerkHUDWidget.h"
#include "PerkHUDActivationWidget.generated.h"
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UPerkHUDActivationWidget : public UPerkHUDWidget {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EPerkHUDActivationLocation Location;
public:
UPerkHUDActivationWidget();
};