Upgrades gumps to allow netstate specific compilation/appends. (#7)
This commit is contained in:
parent
d8ed7c1da9
commit
5d61205240
22 changed files with 69 additions and 71 deletions
|
|
@ -113,13 +113,13 @@ namespace Server.Gumps {
|
|||
m_Size = size;
|
||||
}
|
||||
|
||||
public override string Compile() {
|
||||
public override string Compile( NetState ns ) {
|
||||
return String.Format( "{{ textentrylimited {0} {1} {2} {3} {4} {5} {6} {7} }}", m_X, m_Y, m_Width, m_Height, m_Hue, m_EntryID, Parent.Intern( m_InitialText ), m_Size );
|
||||
}
|
||||
|
||||
private static byte[] m_LayoutName = Gump.StringToBuffer( "textentrylimited" );
|
||||
|
||||
public override void AppendTo( IGumpWriter disp ) {
|
||||
public override void AppendTo( NetState ns, IGumpWriter disp ) {
|
||||
disp.AppendLayout( m_LayoutName );
|
||||
disp.AppendLayout( m_X );
|
||||
disp.AppendLayout( m_Y );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue