Made basic quest setup

This commit is contained in:
cblech
2025-05-19 11:12:23 +02:00
parent 7d1187d218
commit ba133ba607
29 changed files with 394 additions and 5 deletions
@@ -0,0 +1,11 @@
using Godot;
using System;
using Babushka.scripts.CSharp.Common.Util;
public partial class QuestDescriptionUi : RichTextLabel
{
public void UpdateText(QuestLog questLog)
{
Text = questLog.currentDetailQuest?.description ?? "";
}
}