Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#region References
|
||||
using Server.Gumps;
|
||||
#endregion
|
||||
|
||||
namespace Knives.TownHouses
|
||||
{
|
||||
public class HtmlPlus : GumpHtml
|
||||
{
|
||||
public bool Override { get; set; }
|
||||
|
||||
public HtmlPlus(int x, int y, int width, int height, string text, bool back, bool scroll)
|
||||
: base(x, y, width, height, text, back, scroll)
|
||||
{
|
||||
Override = true;
|
||||
}
|
||||
|
||||
public HtmlPlus(int x, int y, int width, int height, string text, bool back, bool scroll, bool over)
|
||||
: base(x, y, width, height, text, back, scroll)
|
||||
{
|
||||
Override = over;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user