mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 09:15:46 -06:00
14 lines
295 B
Rust
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;
|