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 = "";
|
2025-08-14 21:54:18 +02:00
|
|
|
[Export(PropertyHint.MultilineText)]
|
2025-07-07 04:40:40 +02:00
|
|
|
public string title = "";
|
|
|
|
|
[Export(PropertyHint.MultilineText)]
|
|
|
|
|
public string description = "";
|
|
|
|
|
}
|