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
pub mod common;
pub mod fabric;
pub mod forge;
pub mod neoforge;
pub mod quilt;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum LoaderKind {
    Fabric,
    Quilt,
    Forge,
    NeoForge,
}