hirez.realm.Criteria Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of HiRezAPI-realm Show documentation
Show all versions of HiRezAPI-realm Show documentation
API for Realm Royale Game.
The newest version!
package hirez.realm;
public enum Criteria {
Team_Wins(1),
Team_Average_Placement(2),
Individual_Average_Kills(3),
Winrate(4);
final Integer id;
Criteria(int id) {
this.id = id;
}
}