11 lines
243 B
C#
11 lines
243 B
C#
using Godot;
|
|
|
|
namespace Babushka.scripts.CSharp.Common.Quest;
|
|
|
|
public partial class QuestDescriptionUi : RichTextLabel
|
|
{
|
|
public void UpdateText(QuestLog questLog)
|
|
{
|
|
Text = questLog.currentDetailQuest?.description ?? "";
|
|
}
|
|
} |