1 Like
An alternative that would consume fewer lines of could would be
player = (playerDeterminer %4)++;
As effectively you switch statement is adding one to the value of playerDeterminer.
An alternative that would consume fewer lines of could would be
player = (playerDeterminer %4)++;
As effectively you switch statement is adding one to the value of playerDeterminer.