This commit is contained in:
CortexCore
2025-04-14 15:39:24 +08:00
parent 5fceb6f885
commit 3f9d9f19ce
50 changed files with 683 additions and 41 deletions

14
Src/Quest/QuestNode.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
namespace Net.Project.B.Quest
{
public interface IQuestNode :IWorldNode
{
}
}