I'm making a simple 2 player game in XNA and started looking into saving the player's high scores.
I want the game to work on the XBox 360 as well as Windows, so I have to use the framework to save the data.
It seems that you save data to a particular user's gamer tag - so my question is, what to do with high scores?
- Save the user's own scores in their profile? (So you can only see your own scores if you're the only one signed in)
- Try and save other player's scores in all profiles? (Seems like a pain to try and keep this sync'd)
- Store scores online
- The 360 seems to have a standard method for showing friend's high scores. Can this be accessed from within XNA, or is it only available to published games?
- Roll my own. (Seems excessive for such a small personal project.)