de.SweetCode.SteamAPI.interfaces.ICheatReportingService 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.*;
public class ICheatReportingService extends SteamInterface {
public ICheatReportingService(SteamAPI steam) {
super(steam, "ICheatReportingService");
this.add(new ReportPlayerCheating(this));
this.add(new RequestPlayerGameBan(this));
this.add(new RemovePlayerGameBan(this));
this.add(new ICheatReportingServiceGetCheatingReports(this));
this.add(new RequestVacStatusForUser(this));
this.add(new StartSecureMultiplayerSession(this));
this.add(new EndSecureMultiplayerSession(this));
this.add(new ReportCheatData(this));
}
}