com.codedisaster.steamworks.SteamLeaderboardEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of steamworks4j Show documentation
Show all versions of steamworks4j Show documentation
Java wrapper to access the Steamworks API.
package com.codedisaster.steamworks;
public class SteamLeaderboardEntry {
/* Contains only a subset of LeaderboardEntry_t. */
long steamIDUser;
int globalRank;
int score;
int details;
public SteamID getSteamIDUser() {
return new SteamID(steamIDUser);
}
public int getGlobalRank() {
return globalRank;
}
public int getScore() {
return score;
}
public int getNumDetails() {
return details;
}
}