Limen Framework 0.1 Help

FLimenStorageModule

Overview

The FLimenStorageModule class is a module interface for managing the startup and shutdown of the storage functionality in the LimenCore plugin. It inherits from IModuleInterface and overrides the StartupModule and ShutdownModule functions to perform necessary initialization and cleanup tasks.

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

Type

Name

Access

Description

None

None

None

No significant properties are defined in this class.

Functions (Table: Return Type | Signature | Description)

Return Type

Signature

Description

void

StartupModule() override

Initializes the storage module. Currently empty.

void

ShutdownModule() override

Cleans up resources used by the storage module. Currently empty.

Usage & Implementation Notes

  • The StartupModule and ShutdownModule functions are currently placeholders and do not contain any logic.

  • This module does not require special threading constraints, replication, or memory lifetime management as it is a simple initialization/shutdown handler.

22 May 2026