rust_training_tool/
lib.rs

1
2
3
4
5
6
7
8
9
//! `rust_training_tool` is a tool that makes game dev with eframe easy.
//! Warning: eframe is not made for game dev. If you are thinking about using
//! this crate to create a game: don't.  

pub mod collision;
pub mod gui;

// Re-export all useful libraries:
pub use {eframe, eframe::egui};