using System; using Server; using Server.Gumps; namespace Knives.Utils { public class ResponseGump : GumpPlus { public static void SendTo( Mobile m, int width, int height, string text, string title, TimerStateCallback callback ) { new ResponseGump( m, width, height, text, title, callback ); } private int c_Width, c_Height; private string c_Text, c_Title; private TimerStateCallback c_Callback; public ResponseGump( Mobile m, int width, int height, string text, string title, TimerStateCallback callback ) : base( m, 100, 100 ) { c_Width = width; c_Height = height; c_Text = text; c_Title = title; c_Callback = callback; NewGump(); } protected override void BuildGump() { AddBackground( 0, 0, c_Width, c_Height, 0x13BE ); AddHtml( 0, 10, c_Width, 25, HTML.White + "