Files
Pac-Man/src/systems/mod.rs
2025-08-15 13:46:39 -05:00

14 lines
295 B
Rust

//! The Entity-Component-System (ECS) module.
//!
//! This module contains all the ECS-related logic, including components, systems,
//! and resources.
pub mod blinking;
pub mod collision;
pub mod components;
pub mod control;
pub mod input;
pub mod movement;
pub mod profiling;
pub mod render;