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

19 lines
529 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Components/WidgetComponent.h"
#include "WidgetComponentCustomMaterial.generated.h"
class UMaterialInterface;
UCLASS(Blueprintable, EditInlineNew, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UWidgetComponentCustomMaterial : public UWidgetComponent {
GENERATED_BODY()
public:
private:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UMaterialInterface* CustomMaterial;
public:
UWidgetComponentCustomMaterial();
};