mc-launcher-core 0.0.3

This is an mc launcher core written in Rust.
1
2
3
4
5
6
7
8
use uuid::Uuid;

use crate::types::MinecraftOptions;

pub fn get_offline_options(user_name: &str) -> MinecraftOptions {
    let user_uuid = Uuid::new_v4();
    MinecraftOptions::new(user_name.to_string(), user_uuid.to_string(), "".to_string())
}