KLingo Project Documentation 1.0.0
Unreal Engine 5.6 C++ Project Documentation
로딩중...
검색중...
일치하는것 없음
UInteractWidget.h
이 파일의 문서화 페이지로 가기
1// Copyright (c) 2025 Doppleddiggong. All rights reserved. Unauthorized copying, modification, or distribution of this file, via any medium is strictly prohibited. Proprietary and confidential.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Blueprint/UserWidget.h"
7#include "UInteractWidget.generated.h"
8
12UCLASS()
13class ONEPIECE_API UInteractWidget : public UUserWidget
14{
15 GENERATED_BODY()
16
17public:
18 void InitInfo(const FString InKey, const FString InDesc);
19 void UpdateDesc(const FString& NewDesc);
20
21protected:
22 UPROPERTY(meta = (BindWidget), BlueprintReadOnly)
23 TObjectPtr<class UTextBlock> Txt_Key;
24
25 UPROPERTY(meta = (BindWidget), BlueprintReadOnly)
26 TObjectPtr<class UTextBlock> Txt_Desc;
27};