ui/src/lib.rs

17 lines
316 B
Rust
Raw Normal View History

2023-01-16 09:53:52 +00:00
#![deny(rust_2018_idioms)]
pub mod builder;
pub mod elements;
pub mod guihandler;
pub mod keyboard;
pub mod states;
pub mod tab_control;
2023-01-16 11:58:59 +00:00
mod context_interface;
mod controller_button;
mod guidirection;
mod mousebutton;
2023-01-16 09:53:52 +00:00
pub mod prelude;
pub type CustomCallback<I, O> = dyn Fn(I) -> anyhow::Result<O> + Send + Sync;