My project has 3 small games inside. Each game has its own leaderboard (I hope).
	I think this code in FBLeaderboard in the sample project handles this matter.
	public void SaveScoreForFacebookUser(string userId, string score) {
	...
	scoreBoardService.SaveUserScore(constants.GameName, userId, Convert.ToDouble(score), saveCallback);
	}
	But I can't find how to set game names to the variable. 
	Am I right?  If so, how can I do that?
	If I'm wrong, can I do that with App42?