Contains entities with the same set of components.
Example
//components classA {} classB {}
//This archetype contains entities with component A constarchetype1 = newArchetype() archetype.components.set("A",[])
//This archetype contains entities with component A and B constarchetype2 = newArchetype() archetype.components.set("A",[]) archetype.components.set("B",[])
Contains entities with the same set of components.
Example