Merge pull request #166 from Oxy949/master

Added Leaderboard.GetBoardId() to access boardID
This commit is contained in:
Garry Newman 2018-07-24 10:12:31 +01:00 committed by GitHub
commit 812a435031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,10 @@ public enum RequestType
private static readonly int[] subEntriesBuffer = new int[512];
internal ulong BoardId;
public ulong GetBoardId()
{
return BoardId;
}
internal Client client;
private readonly Queue<Action> _onCreated = new Queue<Action>();