Limen Framework 0.1 Help

FLimenProceduralGenerationModule

Overview

This class implements the IModuleInterface to handle the startup and shutdown of the Limen Procedural Generation module. It is responsible for initializing any resources or services required by the plugin when it is loaded into memory, and cleaning up those resources when the plugin is unloaded.

Properties (Table: Type | Name | Access | Description)

Type

Name

Access

Description

Functions (Table: Return Type | Signature | Description)

Return Type

Signature

Description

void

StartupModule()

Called after the module is loaded into memory. Contains initialization logic for the plugin.

void

ShutdownModule()

Called during shutdown to clean up resources used by the plugin. Handles any necessary cleanup before the module is unloaded.

Usage & Implementation Notes

  • This module does not require special threading constraints or replication.

  • Memory lifetime management is handled internally within the module's startup and shutdown functions.

  • No initialization dependencies are specified in this code snippet.

22 May 2026