Skip to content

FOperatingSystemProgramDelegate

#include <OperatingSystemSimulator/Public/Core/OperatingSystem.h>
class FOperatingSystemProgramDelegate

Defined in OperatingSystem.h:384 Delegate representing the event when a program is uninstalled in the operating system.

This delegate can be used to handle the event when a program is uninstalled in the operating system. It can be assigned to a Blueprint variable and bound to a Blueprint function to have custom logic executed when the event occurs.

Usage example:

UFUNCTION()
void HandleProgramUninstalled(UOperatingSystemBaseProgram* Program)
{
// Some logic
}
BeginPlay()
{
OnProgramUninstalled.AddDynamic(this, &ThisClass::HandleProgramUninstalled);
}

See also: FOperatingSystemProgramDelegate

See also: UOperatingSystemBaseProgram