@roomy-chat/sdk
    Preparing search index...

    Type Alias ComponentDef<T>

    A component definition.

    Component definitions have the information needed to get and initialize the component on an Entity.

    Use defComponent to create a new ComponentDef.

    type ComponentDef<T extends ComponentType> = {
        constructor: ComponentConstructor<T>;
        id: ComponentId;
        init: (container: T) => void;
    }

    Type Parameters

    Index

    Properties

    Properties

    constructor: ComponentConstructor<T>
    init: (container: T) => void