de.SweetCode.SteamAPI.interfaces.ISteamNews 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.GetNewsForApp;
import de.SweetCode.SteamAPI.method.methods.GetNewsForAppAuthed;
public class ISteamNews extends SteamInterface {
public ISteamNews(SteamAPI steam) {
super(steam, "ISteamNews");
this.add(new GetNewsForApp(this));
this.add(new GetNewsForAppAuthed(this));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy