9 lines
113 B
Rust
9 lines
113 B
Rust
#![deny(rust_2018_idioms)]
|
|
mod app;
|
|
mod input;
|
|
mod ui;
|
|
|
|
pub use app::*;
|
|
pub use input::handle;
|
|
pub use ui::draw;
|