ModernUO/Scripts/Engines/MLQuests/IQuestGiver.cs
2018-09-14 08:41:38 -07:00

15 lines
241 B
C#

using System;
using System.Collections.Generic;
namespace Server.Engines.MLQuests
{
public interface IQuestGiver
{
List<MLQuest> MLQuests { get; }
Serial Serial { get; }
bool Deleted { get; }
Type GetType();
}
}