Location>code7788 >text

UE5 C++ program process exits

Popularity:904 ℃/2025-03-04 11:11:44
// Fill out your copyright notice in the Description page of Project Settings.

#pragma once

#include ""
#include "Kismet/"
#include ""

/**
 * 
 */
UCLASS()
class UEAPP_API UMyBlueprintFunctionLibrary :  public UBlueprintFunctionLibrary
{
    GENERATED_BODY()


public :
    // Declare a static function that can be called in the blueprint    UFUNCTION(BlueprintCallable, Category =  "Utility" )
    static void ExitGame();
   
};
#include ""
#include "Engine/"

void UMyBlueprintFunctionLibrary::ExitGame() {
    FPlatformMisc::RequestExit( true );

}

Call ExitGame in events such as Blueprint button