示例#1
0
 public GumpResponse(BaseGumpSection section, GumpResponseHandler handler, int localid)
 {
     m_Section       = section;
     m_Handler       = handler;
     m_LocalButtonID = localid;
 }
		public virtual GumpResponse NewResponse( BaseGumpSection section, GumpResponseHandler handler, int localid )
		{
			return new GumpResponse( section, handler, localid );
		}
示例#3
0
 public GumpResponse(BaseGumpSection section, GumpResponseHandler handler) : this(section, handler, 0)
 {
 }
		public GumpResponse NewResponse( BaseGumpSection section, GumpResponseHandler handler )
		{
			return new GumpResponse( section, handler, 0 );
		}
		public GumpResponse NewResponse( GumpResponseHandler handler, int localid )
		{
			return new GumpResponse( this, handler, localid );
		}
示例#6
0
 public virtual GumpResponse NewResponse(BaseGumpSection section, GumpResponseHandler handler, int localid)
 {
     return(new GumpResponse(section, handler, localid));
 }
		public GumpResponse NewResponse( GumpResponseHandler handler )
		{
			return NewResponse( handler, 0 );
		}
示例#8
0
 public GumpResponse NewResponse(GumpResponseHandler handler, int localid)
 {
     return(new GumpResponse(this, handler, localid));
 }
示例#9
0
 public GumpResponse NewResponse(BaseGumpSection section, GumpResponseHandler handler)
 {
     return(new GumpResponse(section, handler, 0));
 }
示例#10
0
 public GumpResponse NewResponse(GumpResponseHandler handler)
 {
     return(NewResponse(handler, 0));
 }
示例#11
0
		public GumpResponse( BaseGumpSection section, GumpResponseHandler handler, int localid )
		{
			m_Section = section;
			m_Handler = handler;
			m_LocalButtonID = localid;
		}
示例#12
0
		public GumpResponse( BaseGumpSection section, GumpResponseHandler handler ) : this ( section, handler, 0 )
		{
		}