rhythm_core/
lib.rs

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