mc-launcher-core 0.1.0

This is an mc launcher core written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use crate::{
    account::Account,
    command::builder::{LaunchCommand, LaunchOptions},
    compatibility::{
        CompatibilityPatch, CompatibilityPolicy, CompatibilityResult, JavaRuntimeHint,
        WindowingHint, WindowingStrategy,
    },
    error::{LauncherError, Result},
    install::request::{InstallRequest, InstallResult, JavaInstallPolicy},
    launcher::Launcher,
    loader::{
        common::{LoaderSpec, LoaderVersion},
        LoaderKind,
    },
    progress::{ProgressEvent, ProgressReporter},
};