rmcl 0.4.0

A fully featured Minecraft TUI launcher
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod render;
mod state;

#[cfg(test)]
pub use render::render;
pub use render::{popup_rect, render_with_picker};
pub use state::{
    ImportResult, ImportStep, ImportWizardState, drain, handle_discovery_click, handle_key,
    has_version_popup, open, take_result,
};

#[cfg(test)]
#[path = "../../../tests/widgets/popups/import_modpack/support.rs"]
mod test_support;
#[cfg(test)]
pub(crate) use test_support::reset as reset_for_test;