Show / Hide Table of Contents

    Interface IResolver

    The resolver is an object that allows you to retrieve various systems from the engine. It uses an inversion of control container (https://en.wikipedia.org/wiki/Inversion_of_control) in order to allow you to replace the built-in engine system implementations with your own implementations. For more details, see: https://tzachshabtay.github.io/MonoAGS/articles/customizations.html

    Namespace: AGS.API
    Assembly: AGS.API.dll
    Syntax
    public interface IResolver

    Methods

    | Improve this Doc View Source

    Resolve<TService>()

    Resolves a service.

    Declaration
    TService Resolve<TService>()
    Returns
    Type Description
    TService

    The requested service.

    Type Parameters
    Name Description
    TService

    The type of the service you request.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX