Files
AstralRinth/theseus/src/api/mod.rs
Wyatt Verchere a13b7a2566 added settings API + fixed bug (#62)
* added settings API + fixed bug

* removed redundant API funcs

* comment clarifications

---------

Co-authored-by: Wyatt <wyatt@modrinth.com>
2023-04-03 13:46:04 -07:00

22 lines
457 B
Rust

//! API for interacting with Theseus
pub mod auth;
pub mod profile;
pub mod profile_create;
pub mod settings;
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},
profile_create, settings, State,
};
}