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.
Trek-12/source/Trek-12/Models/Game/Player.cs

28 lines
538 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;
}
}