ECS
ECS (Entity Component System) is a data-oriented design which binds together everything in Tsar. It gives precise control over every game object and allows creating scalable systems thanks to its high-performance nature.
Each object in the game world, known as Game Object, is refered as Entity. An Entity can have multiple Components.
A Component is a structure holding some specific information like Image, Sound, Player Health etc. This information is processed by Systems to realise its intended functionality.
A System is essentialy a process which acts on the data for specific components. For example, the Physics system acts on all Entities with RigidbodyComponent by calculating their mass, velocity and then applying a change in TransformComponent based on results.