silver-mc-java-core
Version:
A library starting minecraft game NW.js and Electron.js
13 lines (12 loc) • 380 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 FabricMC extends EventEmitter {
options: any;
constructor(options?: {});
downloadJson(Loader: any): Promise<any>;
downloadLibraries(json: any): Promise<any>;
}