thermite/core/
mod.rs

1pub mod manage;
2#[allow(dead_code)]
3pub mod utils;
4
5#[cfg(all(target_os = "linux", feature = "proton"))]
6pub use utils::proton::{download_ns_proton, install_ns_proton, latest_release};
7#[cfg(feature = "steam")]
8pub use utils::steam::{steam_dir, steam_libraries, titanfall2_dir};
9pub use utils::{find_mods, get_enabled_mods, resolve_deps};