ModernUO/Scripts/Engines/MLQuests/IQuestGiver.cs

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