25 lines
364 B
C++
25 lines
364 B
C++
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
|
#include "MyCode.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class TNG_API UMyCode : public UBlueprintFunctionLibrary
|
|
{
|
|
GENERATED_BODY() public:
|
|
|
|
|
|
UFUNCTION(BlueprintCallable, Category = "TextFile", meta = (Keywords = "SaveTxt"))
|
|
static bool SaveTxt(FString SaveTextB);
|
|
|
|
|
|
|
|
|
|
};
|