GameCenterSingleton.ReportScore C# (CSharp) Метод

ReportScore() публичный Метод

public ReportScore ( long score, string leaderBoardID ) : void
score long
leaderBoardID string
Результат void
	public void ReportScore(long score, string leaderBoardID)
	{
		if (Social.localUser.authenticated)
		{
			Debug.Log("Reporting score " + score + " on leaderboard " + leaderBoardID);
			Social.ReportScore(score, leaderBoardID, success =>
			                   {
				Debug.Log(success ? "Reported score successfully" : "Failed to report score");
			});
		}
	}
	public bool AddAchievementProgress(string achievementID, float percentageToAdd)