ecspresso
    Preparing search index...

    Type Alias BaseWorld<C>

    BaseWorld: Pick<
        default<_BaseWorldCfg<C>>,

            | "getComponent"
            | "hasComponent"
            | "removeEntity"
            | "spawn"
            | "markChanged"
            | "getResource"
            | "hasResource",
    > & {
        commands: Pick<
            default,
            "spawn"
            | "removeEntity"
            | "addComponent"
            | "removeComponent",
        >;
        eventBus: Pick<_EventBus, "publish">;
    }

    Type Parameters

    • C extends Record<string, any> = {}