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

15 lines
341 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Blueprint/UserWidget.h"
#include "DealWidget.generated.h"
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UDealWidget : public UUserWidget {
GENERATED_BODY()
public:
UDealWidget();
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void UpdateDealText();
};