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