UNPKG

minecraft-core-master

Version:

Núcleo avanzado para launchers de Minecraft. Descarga, instala y ejecuta versiones de Minecraft, assets, librerías, Java y loaders de forma automática y eficiente.

26 lines (25 loc) 1.19 kB
// Componentes import { AssetsDownloader } from "./Minecraft/Assets.js"; import { ClientDownloader } from "./Minecraft/Version.js"; import { RuntimeDownloader } from "./Minecraft/Runtime.js"; import { LibraryBuyer } from "./Minecraft/LibraryBuyer.js"; import { LibrariesDownloader } from "./Minecraft/Libraries.js"; import { ArgumentsBuilder } from "./Minecraft/Arguments.js"; // Principales import { MinecraftDownloader } from "./Components/Download.js"; import { MinecraftLaunch } from "./Components/Launch.js"; // Otros import { Status } from "./Utils/Status.js"; // Auth import Microsoft from './Authenticator/Microsoft.js'; import * as Mojang from './Authenticator/Mojang.js'; import AZauth from './Authenticator/AZauth.js'; export { // Componentes LibraryBuyer as LibraryBuyer, AssetsDownloader as AssetsDownloader, ClientDownloader as ClientDownloader, ArgumentsBuilder as ArgumentsBuilder, RuntimeDownloader as RuntimeDownloader, LibrariesDownloader as LibrariesDownloader, // Principales MinecraftLaunch as MinecraftLaunch, MinecraftDownloader as MinecraftDownloader, // Otros Status as Status, // Authenthicator Microsoft as Microsoft, Mojang as Mojang, AZauth as AZauth, };