Files
abysmal-isle/Server/Gumps/ECHandleInput.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

25 lines
495 B
C#

using System;
using Server.Network;
namespace Server.Gumps
{
public class ECHandleInput : GumpEntry
{
public ECHandleInput()
{
}
public override string Compile()
{
return String.Format("{{ echandleinput }}");
}
private static byte[] m_LayoutName = Gump.StringToBuffer("echandleinput");
public override void AppendTo(IGumpWriter disp)
{
disp.AppendLayout(m_LayoutName);
}
}
}