You could pass them as arguments for the Player class or for the rest method.
For example, your Player class could read:
public Player(int gold, int maxHealth, int maxMana)
{
...
}
so when you created a new player, you put in the starting variables
jim = new Player(0, 40, 40)...