Limen Framework 0.1 Help

ULimenAsyncInitializer

Overview

ULimenAsyncInitializer is an interface that defines a contract for classes to implement asynchronous initialization logic. It provides a blueprint-native event IsWorking which can be overridden by implementing classes to indicate whether the initialization process is currently active.

Properties

Type

Name

Access

Description

bool

IsWorking() const

Public

Returns true if the initialization process is working, otherwise false. This function is a blueprint-native event and must be implemented by any class inheriting from this interface.

Functions

Return Type

Signature

Description

bool

IsWorking() const

Returns true if the initialization process is working, otherwise false. This function is a blueprint-native event and must be implemented by any class inheriting from this interface.

Usage & Implementation Notes

  • Implementing classes must provide an implementation for the IsWorking_Implementation method to define the logic that determines whether the initialization process is active.

  • This interface can be used in conjunction with other components of the Limen Framework to manage asynchronous operations during level transitions or other critical processes.

22 May 2026