A Rust library for managing, installing and launching Minecraft instances.
```rust use cobble_core::profile::Profile; use std::sync::{atomic::AtomicBool, Arc};
let clientid = "
let cancel = Arc::new(AtomicBool::new(false)); let (url, result) = Profile::authenticate(clientid, clientsecret, cancel)?;
println!("{}", url);
let profile: Profile = result.recv()??; println!("Minecraft Playername: {}", profile.player_name); ```
```rust use cobble_core::instance::{Instance, InstanceBuilder}; use std::sync::atomic::AtomicBool; use std::sync::Arc;
let instance: Instance = InstanceBuilder::default() .name("Test Instance".tostring()) .version("1.18.2".tostring()) .instancepath("./instance".tostring()) .librariespath("./libraries".tostring()) .assetspath("./assets".tostring()) .build()?;
let (tx, rx) = Instance::updatechannel(); let cancel = Arc::new(AtomicBool::new(false));
instance.full_install(tx, cancel)?; ```
```rust use cobblecore::instance::{Instance, InstanceBuilder}; use cobblecore::minecraft::launch_options::LaunchOptionsBuilder;
let instance: Instance = InstanceBuilder::default() .name("Test Instance".tostring()) .version("1.18.2".tostring()) .instancepath("./instance".tostring()) .librariespath("./libraries".tostring()) .assetspath("./assets".tostring()) .build()?;
instance.launch(&LaunchOptionsBuilder::default().build()).unwrap(); ```
| Feature | Description |
|-----------|-----------------------------------------------|
| gobject
| Provides glib objects for the primary structs |