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

17 lines
576 B
C#

namespace Server.Engines.MLQuests.Gumps
{
public class InfoNPCGump : BaseQuestGump
{
public InfoNPCGump(TextDefinition title, TextDefinition message)
: base(1060668) // INFORMATION
{
RegisterButton(ButtonPosition.Left, ButtonGraphic.Close, 3);
SetPageCount(1);
BuildPage();
TextDefinition.AddHtmlText(this, 160, 108, 250, 16, title, false, false, 0x2710, 0x4AC684);
TextDefinition.AddHtmlText(this, 98, 156, 312, 180, message, false, true, 0x15F90, 0xBDE784);
}
}
}