You've already forked pages
forked from didirus/AstralRinth
* basic push * actual push * JRE detection, and autosetting * removed a println, retrying CI/CD * new game version compare; preset java 7 and 8 using our jre * 1.8 mislabeled * working JRE changes * fixed bugs with JRE setup * fixed bugs with JRE setup * manual merge * prettier * fixes + jre 17 * clippy, prettier * typo * forgot to hook up a function * pr fix + comment fix * added loader_version * take 2
30 lines
611 B
Rust
30 lines
611 B
Rust
//! API for interacting with Theseus
|
|
pub mod auth;
|
|
pub mod jre;
|
|
pub mod pack;
|
|
pub mod process;
|
|
pub mod profile;
|
|
pub mod profile_create;
|
|
pub mod settings;
|
|
pub mod tags;
|
|
|
|
pub mod data {
|
|
pub use crate::state::{
|
|
DirectoryInfo, Hooks, JavaSettings, MemorySettings, ModLoader,
|
|
ProfileMetadata, Settings, WindowSize,
|
|
};
|
|
}
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
auth::{self, Credentials},
|
|
data::*,
|
|
jre, pack, process,
|
|
profile::{self, Profile},
|
|
profile_create, settings,
|
|
state::JavaGlobals,
|
|
util::jre::JavaVersion,
|
|
State,
|
|
};
|
|
}
|