Delegate KaijuStats.LeaderboardDownloadHandler
Delegate for finding a leaderboard.
Namespace: KaijuSolutions.MultiplayerEngine
Syntax
public delegate void LeaderboardDownloadHandler(bool success, ulong leaderboard, int[] ranks, ulong[] users, int[] scores, int[][] details, ulong[] userGeneratedContents);
Parameters
| Type | Name | Description |
|---|---|---|
| System.Boolean | success | If we got the leaderboards successfully. |
| System.UInt64 | leaderboard | The leaderboard. |
| System.Int32[] | ranks | The rankings for each entry. |
| System.UInt64[] | users | The users for each entry. |
| System.Int32[] | scores | The scores for each entry. |
| System.Int32[][] | details | The details associated with each entry. |
| System.UInt64[] | userGeneratedContents | Any user generated content associated with each entry. |