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,13 @@
using Godot;
namespace Babushka.scripts.CSharp.Common.Quest;
[GlobalClass]
public partial class QuestResource : Resource
{
[Export]
public string id = "";
[Export]
public string title = "";
[Export(PropertyHint.MultilineText)]
public string description = "";
}