/** * Forwards denial to player who sent the request */ public async Task DeclineRequestMatch(RequestMatchModel model) { await ForwardToPlayer(model.From.Id, model, Commands.DeclineRequestMatch); }
/** * Forwards accept to player who sent the request */ public async Task AcceptRequestMatch(RequestMatchModel model) { await ForwardToPlayer(model.From.Id, model, Commands.AcceptRequestMatch); }
public async Task CancelRequestMatch(RequestMatchModel model) { await ForwardToPlayer(model.To.Id, model, Commands.CancelRequestMatch); }