- [X] Switches testing to moq for mocking - [X] Converts race changer packets - [X] Renames some more folders and misc cleanup
17 lines
576 B
C#
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);
|
|
}
|
|
}
|
|
}
|