namespace Bullseye
{
///
/// Object to track the name and score of a player
///
public class Player
{
///
/// Creates a play with the given name
///
/// Name of the player
public Player(string name)
{
Name = name;
Score = 0;
}
///
/// Name of the player
///
public string Name { get; private set; }
///
/// Current score of the player
///
public int Score { get; set; }
}
}