using System; namespace Server.Gumps; public abstract class StaticNoticeGump : StaticWarningGump where T : StaticNoticeGump { public override int Header => 1060637; //
NOTICE
public sealed override bool CancelButton => false; public StaticNoticeGump(Action callback = null) : base(callback != null ? _ => callback() : null) { } }