Table of Contents

Interface ILazyDependencyLoader<T>

Namespace
Axolotl2D.Helpers
Assembly
Axolotl2D.dll

Represents a lazy dependency loader.

public interface ILazyDependencyLoader<T>

Type Parameters

T

Type of dependency to load.

Properties

IsLoaded

Gets whether the dependency is loaded.

bool IsLoaded { get; }

Property Value

bool

Value

Gets the value of the dependency.

T Value { get; }

Property Value

T