Create an array of DevEntites. Can be very helpful for things like inspecting component state,
and which systems will be called on an entity.
example
console.table(world.dev.entities);// Pro tip! try displaying a table of entities with console.table and DevEntity.toTableRow().console.table(world.dev.entities.map(devEntity=>devEntity.toTableRow()));
Create an array of DevEntites. Can be very helpful for things like inspecting component state, and which systems will be called on an entity.