Namespace
CarterGames.Assets.LeaderboardManager
The leaderboard data store class holds all the data for leaderboards saved in the system. This is more for internal use with the system but you can use it to access the leaderboards stored.
Properties
List<LeaderboardData> Leaderboards
List<LeaderboardData> Leaderboards;
Gets/sets the leaderboards in the store.
LeaderboardDataStore dataStore;
var _exampleBoard = dataStore.Leaderboards.FirstOrDefault(t => t.BoardID.Equals("Example"));