Hello!

I've come into some source code that I'm picking apart and I'm wondering what this piece of code does:

Code:
public Player Player
{
    get { return player; }
}
Player player;

// Here's another example:

public int Score
{
    get { return score; }
}
int score;