14 lines
289 B
C#
14 lines
289 B
C#
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 = "";
|
|
}
|