8#include "CoreMinimal.h"
9#include "Kismet/BlueprintFunctionLibrary.h"
11#include "PlatformUtilities.generated.h"
28 UFUNCTION(BlueprintPure, Category =
"Platform Utilities")
29 static bool PlayingInEditor();
35 UFUNCTION(BlueprintPure, Category =
"Platform Utilities")
36 static bool IsPlatformLinux();
42 UFUNCTION(BlueprintPure, Category =
"Platform Utilities")
43 static bool IsPlatformWindows();
49 UFUNCTION(BlueprintPure, Category =
"Platform Utilities")
50 static bool IsShippingBuild();
56 UFUNCTION(BlueprintCallable, Category =
"Platform Utilities")
57 static void CopyTextToClipboard(FString TextToCopy);