servuo/Server/Gumps/ECHandleInput.cs
VitaNex f840e50340 Updated .editorconfig file with advanced configuration settings that will help maintain user code style and best practices with most IDE's.
Complete core housekeeping operation using "Profile 1" with new .editorconfig settings.
2021-01-15 12:51:10 -08:00

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);
}
}
}