mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-10 08:07:56 -06:00
10 lines
159 B
Rust
10 lines
159 B
Rust
pub mod fruits;
|
|
pub mod lives;
|
|
pub mod score;
|
|
pub mod touch;
|
|
|
|
pub use self::fruits::*;
|
|
pub use self::lives::*;
|
|
pub use self::score::*;
|
|
pub use self::touch::*;
|