Social.ReportScore
static function ReportScore(score: long, board: string, callback: Action<bool>): void;
static void ReportScore(long score, string board, Action<bool> callback);
static def ReportScore(score as long, board as string, callback as Action<bool>) as void
Description

Report a score to a specific leaderboard.

void ReportScore (long score, string leaderboardID) {
		Debug.Log ("Reporting score " + score + " on leaderboard " + leaderboardID);
		Social.ReportScore (score, leaderboardID, success => {
			Debug.Log(success ? "Reported score successfully" : "Failed to report score");
		});
	}