コード例 #1
0
 public void _NullResponse(Response.TypeEnum type = Response.TypeEnum.Undefined)
 {
     GetLoop.Response(new Response(this, null, type));
 }
コード例 #2
0
 public void NullResponse(Response.TypeEnum type = Response.TypeEnum.Undefined)
 {
     quest._NullResponse(type);
 }
コード例 #3
0
 public void _SendResponse(Response.CallbackDelegate callback, Response.TypeEnum type = Response.TypeEnum.Undefined)
 {
     GetLoop.Response(new Response(this, callback, type));
 }
コード例 #4
0
 public void SendResponse(Response.CallbackDelegate callback, Response.TypeEnum type = Response.TypeEnum.Undefined)
 {
     quest._SendResponse(callback, type);
 }