ModernUO/Projects/UOContent/Engines/ML Quests/IQuestGiver.cs
Kamron Batman b4b1b0b122
fix(core): Converts more packets and switches to Moq (#415)
- [X] Switches testing to moq for mocking
- [X] Converts race changer packets
- [X] Renames some more folders and misc cleanup
2021-01-16 22:09:05 -08:00

15 lines
259 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();
}
}