de.SweetCode.SteamAPI.interfaces.ISteamWebAPIUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SteamAPI Show documentation
Show all versions of SteamAPI Show documentation
SteamAPI is a wrapper of the Steam Web API.
package de.SweetCode.SteamAPI.interfaces;
import de.SweetCode.SteamAPI.SteamAPI;
import de.SweetCode.SteamAPI.method.methods.GetServerInfo;
import de.SweetCode.SteamAPI.method.methods.GetSupportedAPIList;
public class ISteamWebAPIUtil extends SteamInterface {
public ISteamWebAPIUtil(SteamAPI steam) {
super(steam, "ISteamWebAPIUtil");
this.add(new GetServerInfo(this));
this.add(new GetSupportedAPIList(this));
}
}