Files
Babushka/scripts/CSharp/Common/Quest/QuestResource.cs
T

14 lines
289 B
C#
Raw Normal View History

2025-07-07 04:40:40 +02:00
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 = "";
}