ECS Design
ECS stands for Entity Component System
| Name | Describes |
|---|---|
| Entity | A unique identifier (like an ID) representing a game object. |
| Component | A chunk of data (no behavior) that describes one aspect of an entity. |
| System | Logic that operates on entities with specific components. |