plus simple
All checks were successful
Main Build Process / Build & Test (pull_request) Successful in 1m42s
check main state / build (8.0.x) (push) Successful in 55s
Main Build Process / Build & Test (push) Successful in 1m23s

This commit was merged in pull request #13.
This commit is contained in:
2024-09-03 20:59:49 +02:00
parent 4a5fc49c31
commit 0503e95d64
6 changed files with 21 additions and 69 deletions

View File

@@ -6,10 +6,10 @@ namespace LittleTown.Core.Actions;
public class EmptyAction : IAction
{
/// <inheritdoc/>
public void Execute(MatchUpdater updater)
public void Execute(Match match)
{
ArgumentNullException.ThrowIfNull(updater);
ArgumentNullException.ThrowIfNull(match);
updater.NextPlayer();
match.NextPlayer();
}
}