Declaration


public static bool BoardExists(string boardId)

Parameters


string boardId The id of the leaderboard to find.

Description


Returns if there is a leaderboard of the entered id in the manager’s data.

Example


private void OnEnable()
{
		if (LeaderboardManager.BoardExists("MyLeaderboard")
		{
				// Do stuff here...
		}
}