Files
2025-05-01 07:20:41 +09:00

16 lines
306 B
C#

using GameServer;
using ServerCommon;
namespace GameServer
{
public class QuestClientSide : QuestBase
{
public QuestClientSide(Player owner) : base(EQuestEventTargetType.NONE, EQuestEventNameType.NONE, 0, string.Empty, string.Empty, string.Empty)
{
}
}
}