mini_arcade_native_backend.config ================================= .. py:module:: mini_arcade_native_backend.config .. autoapi-nested-parse:: Configuration and utility functions for the mini arcade native backend. Classes ------- .. autoapisummary:: mini_arcade_native_backend.config.NativeBackendSettings Module Contents --------------- .. py:class:: NativeBackendSettings Settings for configuring the native backend. :ivar core: Core backend settings. :ivar api: The rendering API to use. .. py:attribute:: core :type: mini_arcade_core.backend.config.BackendSettings .. py:attribute:: api :type: mini_arcade_native_backend._native.RenderAPI .. py:method:: to_dict() -> dict Convert the NativeBackendSettings to a dictionary. :return: Dictionary representation of the settings. :rtype: dict .. py:method:: from_dict(data: dict) -> NativeBackendSettings :classmethod: Create a NativeBackendSettings instance from a dictionary. :param data: Dictionary containing the settings. :type data: dict :return: NativeBackendSettings instance. :rtype: NativeBackendSettings