You've already forked AstralRinth
forked from didirus/AstralRinth
20 lines
389 B
Rust
20 lines
389 B
Rust
//! API for interacting with Theseus
|
|
pub mod auth;
|
|
pub mod profile;
|
|
|
|
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::*,
|
|
profile::{self, Profile},
|
|
State,
|
|
};
|
|
}
|