KLingo Project Documentation 1.0.0
Unreal Engine 5.6 C++ Project Documentation
로딩중...
검색중...
일치하는것 없음
UQuestInfoWidget.cpp
이 파일의 문서화 페이지로 가기
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
4#include "UQuestInfoWidget.h"
5#include "Components/TextBlock.h"
6
7void UQuestInfoWidget::UpdateQuestText(FString InTitle, FString InMessage)
8{
9 Txt_Title->SetText(FText::FromString(InTitle));
10 Txt_Message->SetText(FText::FromString(InMessage));
11}
TObjectPtr< class UTextBlock > Txt_Message
void UpdateQuestText(FString InTitle, FString InDescription)
TObjectPtr< class UTextBlock > Txt_Title