com.codedisaster.steamworks.SteamRemoteStorageCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of steamworks4j Show documentation
Show all versions of steamworks4j Show documentation
Java wrapper to access the Steamworks API.
package com.codedisaster.steamworks;
public interface SteamRemoteStorageCallback {
void onFileShareResult(SteamUGCHandle fileHandle, String fileName, SteamResult result);
void onDownloadUGCResult(SteamUGCHandle fileHandle, SteamResult result);
void onPublishFileResult(SteamPublishedFileID publishedFileID, boolean needsToAcceptWLA, SteamResult result);
void onUpdatePublishedFileResult(SteamPublishedFileID publishedFileID, boolean needsToAcceptWLA, SteamResult result);
}