public void _NullResponse(Response.TypeEnum type = Response.TypeEnum.Undefined) { GetLoop.Response(new Response(this, null, type)); }
public void NullResponse(Response.TypeEnum type = Response.TypeEnum.Undefined) { quest._NullResponse(type); }
public void _SendResponse(Response.CallbackDelegate callback, Response.TypeEnum type = Response.TypeEnum.Undefined) { GetLoop.Response(new Response(this, callback, type)); }
public void SendResponse(Response.CallbackDelegate callback, Response.TypeEnum type = Response.TypeEnum.Undefined) { quest._SendResponse(callback, type); }