Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
28
Scripts/Services/Town Cryer/Gumps/BaseTownCryerGump.cs
Normal file
28
Scripts/Services/Town Cryer/Gumps/BaseTownCryerGump.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Mobiles;
|
||||
using Server.Gumps;
|
||||
|
||||
namespace Server.Services.TownCryer
|
||||
{
|
||||
public class BaseTownCryerGump : BaseGump
|
||||
{
|
||||
public TownCrier Cryer { get; private set; }
|
||||
|
||||
public BaseTownCryerGump(PlayerMobile pm, TownCrier cryer)
|
||||
: base(pm, 50, 50)
|
||||
{
|
||||
Cryer = cryer;
|
||||
}
|
||||
|
||||
public override void AddGumpLayout()
|
||||
{
|
||||
AddPage(0);
|
||||
|
||||
AddBackground(0, 0, 854, 700, 0x24AE);
|
||||
AddImage(156, 35, 0x266C);
|
||||
|
||||
AddBackground(40, 130, 770, 470, 0x2486);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user