Delegate KaijuStats.LeaderboardScoreUploadedHandler
Delegate for uploading a score to a leaderboard.
Namespace: KaijuSolutions.MultiplayerEngine
Syntax
public delegate void LeaderboardScoreUploadedHandler(bool success, ulong leaderboard, int score, bool changed, int rank, int previous);
Parameters
| Type | Name | Description |
|---|---|---|
| System.Boolean | success | If the upload was a success. |
| System.UInt64 | leaderboard | The leaderboard. |
| System.Int32 | score | The score that was set or at least attempted to be set. |
| System.Boolean | changed | If the score changed, with false indicating the same or a better score was already in the leaderboards. |
| System.Int32 | rank | The rank in the leaderboards. |
| System.Int32 | previous | The previous rank in the leaderboards, being zero if they had no prior ranking. |