silver-mc-java-core
Version:
A library starting minecraft game NW.js and Electron.js
14 lines (13 loc) • 405 B
TypeScript
/**
* @author Luuxis
* @license CC-BY-NC 4.0 - https://creativecommons.org/licenses/by-nc/4.0/
*/
/// <reference types="node" />
import { EventEmitter } from 'events';
export default class Quilt extends EventEmitter {
options: any;
versionMinecraft: any;
constructor(options?: {});
downloadJson(Loader: any): Promise<any>;
downloadLibraries(json: any): Promise<any>;
}