You've already forked AstralRinth
forked from didirus/AstralRinth
* Reapply "Implement a more robust IPC system between the launcher and client (#4159)"
This reverts commit e25d726da4.
* Put game JAR and theseus JAR ahead of other JARs in classpath
* Fix 1.17-1.20 Forge by forcefully removing Multi-Release manifest entry
* Fix formatting
---------
Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
44 lines
1.1 KiB
Rust
44 lines
1.1 KiB
Rust
//! API for interacting with Theseus
|
|
pub mod cache;
|
|
pub mod friends;
|
|
pub mod handler;
|
|
pub mod jre;
|
|
pub mod logs;
|
|
pub mod metadata;
|
|
pub mod minecraft_auth;
|
|
pub mod minecraft_skins;
|
|
pub mod mr_auth;
|
|
pub mod pack;
|
|
pub mod process;
|
|
pub mod profile;
|
|
pub mod server_address;
|
|
pub mod settings;
|
|
pub mod tags;
|
|
pub mod worlds;
|
|
|
|
pub mod data {
|
|
pub use crate::state::{
|
|
CacheBehaviour, CacheValueType, Credentials, Dependency, DirectoryInfo,
|
|
Hooks, JavaVersion, LinkedData, MemorySettings, ModLoader,
|
|
ModrinthCredentials, Organization, ProcessMetadata, ProfileFile,
|
|
Project, ProjectType, SearchResult, SearchResults, Settings,
|
|
TeamMember, Theme, User, UserFriend, Version, WindowSize,
|
|
};
|
|
pub use ariadne::users::UserStatus;
|
|
}
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
State,
|
|
data::*,
|
|
event::CommandPayload,
|
|
jre, metadata, minecraft_auth, mr_auth, pack, process,
|
|
profile::{self, Profile, create},
|
|
settings,
|
|
util::{
|
|
io::{IOError, canonicalize},
|
|
network::tcp_listen_any_loopback,
|
|
},
|
|
};
|
|
}
|