An entity is built from components you snap together.
blinker := class<final_super>(component):
OnBeginSimulation<override>():void =
if (Mesh := Entity.GetComponent[mesh_component]):
Mesh.Disable()
Takeaway — Components are LEGO bricks for entities.