10 lines
190 B
C#
10 lines
190 B
C#
|
using Godot;
|
||
|
using System;
|
||
|
using BITKit;
|
||
|
namespace BITKit;
|
||
|
public partial class QuestComponent : EntityComponent
|
||
|
{
|
||
|
[Export] public string QuestName;
|
||
|
[Export] public bool QuestCompleted;
|
||
|
}
|