mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 03:15:48 -06:00
19 lines
373 B
Rust
19 lines
373 B
Rust
//! The Entity-Component-System (ECS) module.
|
|
//!
|
|
//! This module contains all the ECS-related logic, including components, systems,
|
|
//! and resources.
|
|
|
|
pub mod audio;
|
|
pub mod blinking;
|
|
pub mod collision;
|
|
pub mod components;
|
|
pub mod debug;
|
|
pub mod formatting;
|
|
pub mod ghost;
|
|
pub mod input;
|
|
pub mod item;
|
|
pub mod movement;
|
|
pub mod player;
|
|
pub mod profiling;
|
|
pub mod render;
|