Nocturna
    Preparing search index...

    Interface AbstractFactory

    AbstractFactory defines the interface for creating game objects or editor objects using a specific GameObjectFactory and configuration.

    interface AbstractFactory {
        create(
            factory: GameObjectFactory,
            config: GameObjectConfig,
        ): EditorObject | GameObject;
    }
    Index

    Methods

    Methods