ecspresso
    Preparing search index...

    Interface WorldConfig

    Single config object that bundles all 5 world type dimensions. Replaces the 5 positional type params (ComponentTypes, EventTypes, ResourceTypes, AssetTypes, ScreenStates) throughout the codebase.

    interface WorldConfig {
        assets: Record<string, unknown>;
        components: Record<string, any>;
        events: Record<string, any>;
        resources: Record<string, any>;
        screens: Record<string, ScreenDefinition<any, any>>;
    }
    Index

    Properties

    assets: Record<string, unknown>
    components: Record<string, any>
    events: Record<string, any>
    resources: Record<string, any>
    screens: Record<string, ScreenDefinition<any, any>>