You've already forked LuckyWorld
14 lines
296 B
C++
14 lines
296 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FileUtils.generated.h"
|
|
|
|
UCLASS()
|
|
class LUCKYWORLDV2_API UFileUtils : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UFileUtils();
|
|
|
|
static bool WriteJsonlFile(const TArray<FString>& JsonLines, const FString& BasePath, const FString& FileName);
|
|
}; |