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

de.SweetCode.SteamAPI.interfaces.IGameNotificationsService 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 IGameNotificationsService extends SteamInterface {

    public IGameNotificationsService(SteamAPI steam) {
        super(steam, "IGameNotificationsService");

        this.add(new CreateSession(this));
        this.add(new UpdateSession(this));
        this.add(new EnumerateSessionsForApp(this));
        this.add(new GetSessionDetailsForApp(this));
        this.add(new RequestNotifications(this));
        this.add(new DeleteSession(this));
        this.add(new DeleteSessionBatch(this));

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy