You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
523 B
28 lines
523 B
namespace Models.Game;
|
|
|
|
public class Player
|
|
{
|
|
public string Pseudo { get; private set; }
|
|
|
|
public string ProfilePicture { get; private set; }
|
|
|
|
public Player()
|
|
{
|
|
Pseudo = "Player";
|
|
ProfilePicture = "DefaultProfilePicture";
|
|
}
|
|
|
|
public Player(string pseudo, string profilePicture = "DefaultProfilePicture")
|
|
{
|
|
Pseudo = pseudo;
|
|
ProfilePicture = profilePicture;
|
|
}
|
|
|
|
|
|
|
|
public Operation ChooseOperation()
|
|
{
|
|
return Operation.LOWER
|
|
}
|
|
|
|
} |