17 lines
340 B
Rust
17 lines
340 B
Rust
#![deny(rust_2018_idioms)]
|
|
|
|
pub mod builder;
|
|
pub mod elements;
|
|
pub mod gui_handler;
|
|
pub mod keyboard;
|
|
pub mod states;
|
|
pub mod tab_control;
|
|
|
|
mod context_interface;
|
|
mod controller_button;
|
|
mod element_creator;
|
|
mod gui_direction;
|
|
mod mouse_button;
|
|
pub mod prelude;
|
|
|
|
pub type CustomCallback<I, O> = dyn Fn(I) -> anyhow::Result<O> + Send + Sync;
|