wima
    Preparing search index...

    Class Table

    Contains entities with the same set of components.

    //components
    class A {}
    class B {}

    //This table contains entities with component A
    const archetype1 = new Table()
    table.components.set("A",[])

    //This table contains entities with component A and B
    const archetype2 = new Table()
    table.components.set("A",[])
    table.components.set("B",[])
    Index

    Constructors

    Properties

    columns: ReadonlyMap<TypeId, unknown[]> = ...

    Methods