F95API/app/scripts/classes/game-download.js

41 lines
785 B
JavaScript
Raw Normal View History

2020-09-29 15:11:43 +00:00
class GameDownload {
constructor() {
/**
* @public
* Platform that hosts game files
* @type String
*/
this.hosting = "";
/**
* @public
* Link to game files
* @type URL
*/
this.link = null;
/**
* @public
* Operating systems supported by the game version indicated in this class.
* Can be *WINDOWS/LINUX/MACOS*
* @type String[]
*/
this.supportedOS = [];
}
/**
* @public
* Download the game data in the indicated path
* @param {string} path Save path
*/
download(path){
}
}
module.exports.GameDownload = GameDownload;
function downloadMEGA(url){
}
function downloadNOPY(url){
}