Files
Net.Project.B/Src/Quest/QuestNode.cs
CortexCore 3f9d9f19ce 1
2025-04-14 15:39:24 +08:00

15 lines
194 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
namespace Net.Project.B.Quest
{
public interface IQuestNode :IWorldNode
{
}
}