ModernUO/Projects/UOContent/Engines/ML Quests/Gumps/QuestConversationGump.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

21 lines
528 B
C#

using Server.Mobiles;
namespace Server.Engines.MLQuests.Gumps
{
public class QuestConversationGump : BaseQuestGump
{
public QuestConversationGump(MLQuest quest, PlayerMobile pm, TextDefinition text)
: base(3006156) // Quest Conversation
{
CloseOtherGumps(pm);
SetTitle(quest.Title);
RegisterButton(ButtonPosition.Right, ButtonGraphic.Close, 3);
SetPageCount(1);
BuildPage();
AddConversation(text);
}
}
}