ModernUO/Projects/UOContent/Engines/MLQuests/IQuestGiver.cs
2020-05-09 12:55:56 -07:00

15 lines
No EOL
250 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();
}
}