rust_training_tool/
lib.rs

1//! `rust_training_tool` is a tool that makes game dev with eframe easy.
2//! Warning: eframe is not made for game dev. If you are thinking about using
3//! this crate to create a game: don't.  
4//!
5//! ## Feature flags
6//!
7//! To enable the use of images through `egui::Image`, enable the `images` feature by replacing
8//! `rust-training-tool = "x.y.z"` with `rust-training-tool = { version = "x.y.z", features = ["images"] }`
9
10pub mod collision;
11pub mod gui;
12
13// Re-export all useful libraries:
14pub use {eframe, eframe::egui};