You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Players want to know where they are on a scoreboard.
Possible solution
Create a new class named Player inside the context ConnectFour. Below there's an example structure of this class. The username is there as an example of how this issue supplements issue #14.
final class Player
{
public function __construct(
private readonly string $id;
private string $username;
private int $rating;
) {
}
}
The text was updated successfully, but these errors were encountered:
Problem description
Possible solution
Create a new class named
Player
inside the contextConnectFour
. Below there's an example structure of this class. Theusername
is there as an example of how this issue supplements issue #14.The text was updated successfully, but these errors were encountered: