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