Пример #1
0
 public GumpResponse(BaseGumpSection section, GumpResponseHandler handler, int localid)
 {
     m_Section       = section;
     m_Handler       = handler;
     m_LocalButtonID = localid;
 }
Пример #2
0
		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)
 {
 }
Пример #4
0
		public GumpResponse NewResponse( BaseGumpSection section, GumpResponseHandler handler )
		{
			return new GumpResponse( section, handler, 0 );
		}
Пример #5
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));
 }
Пример #7
0
		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 )
		{
		}