de.SweetCode.SteamAPI.interfaces.ISteamCommunity 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.ReportAbuse;
public class ISteamCommunity extends SteamInterface {
public ISteamCommunity(SteamAPI steam) {
super(steam, "ISteamCommunity");
this.add(new ReportAbuse(this));
}
}