mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
23 lines
433 B
C#
23 lines
433 B
C#
using Server.Network;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class ECHandleInput : GumpEntry
|
|
{
|
|
public ECHandleInput()
|
|
{
|
|
}
|
|
|
|
public override string Compile()
|
|
{
|
|
return System.String.Format("{{ echandleinput }}");
|
|
}
|
|
|
|
private static readonly byte[] m_LayoutName = Gump.StringToBuffer("echandleinput");
|
|
|
|
public override void AppendTo(IGumpWriter disp)
|
|
{
|
|
disp.AppendLayout(m_LayoutName);
|
|
}
|
|
}
|
|
}
|