Declaration


public static void DeleteLeaderboard(string boardId)

Parameters


string boardId The id of the leaderboard to find.

Description


Deletes the leaderboard of the entered id if it exists.

Example


private void OnEnable()
{
		LeaderboardManager.DeleteLeaderboard("MyLeaderboard");
}