1 2 3 4 5 6 7 8
//! This is the core library for the rhythm games. //! It contains the basic structures and traits that are used in the rhythm games. pub mod note; pub mod rhythm; pub use note::*; pub use rhythm::*;