Adds missing gump components. (#111)

This commit is contained in:
Kamron Batman 2020-04-24 21:31:31 -07:00 committed by GitHub
parent 18b7cee52a
commit c116dff3e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 531 additions and 1045 deletions

View file

@ -42,31 +42,6 @@ namespace Server.Gumps
}
}
protected void Delta(ref uint var, uint val)
{
var = val;
}
protected void Delta(ref int var, int val)
{
var = val;
}
protected void Delta(ref bool var, bool val)
{
var = val;
}
protected void Delta(ref string var, string val)
{
var = val;
}
protected void Delta(ref object[] var, object[] val)
{
var = val;
}
public abstract string Compile(NetState ns);
public abstract void AppendTo(NetState ns, IGumpWriter disp);
}