// 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