Limen Framework 0.1 Help

FLimenArchivesModule

Overview

The FLimenArchivesModule class is a module interface for the Limen Interaction plugin. It overrides the StartupModule and ShutdownModule functions to handle the lifecycle events of the module, ensuring proper setup and teardown when the module is loaded or unloaded.

Functions

Return Type

Signature

Description

void

StartupModule() override

Initializes the module. Currently empty.

void

ShutdownModule() override

Shuts down the module. Currently empty.

Usage & Implementation Notes

  • This module does not perform any specific initialization or shutdown logic at this time, as indicated by the empty implementations of StartupModule and ShutdownModule.

22 May 2026