All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.SweetCode.SteamAPI.interfaces.ICheatReportingService Maven / Gradle / Ivy

There is a newer version: 1.0.4-beta
Show newest version
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));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy