25 lines
529 B
C++
25 lines
529 B
C++
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
|
#include "LaunchExApp.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class TNG_API ULaunchExApp : public UBlueprintFunctionLibrary
|
|
{
|
|
GENERATED_BODY() public:
|
|
|
|
UFUNCTION(BlueprintCallable, Category = "LaunchApp", meta = (Keywords = "LaunchExternalApplication"))
|
|
static void LaunchExternalApplication(FString URLtoOpen);
|
|
UFUNCTION(BlueprintCallable, Category = "LaunchApp", meta = (Keywords = "HideBar"))
|
|
static void hideBar(bool show);
|
|
|
|
|
|
|
|
};
|