14 lines
251 B
C
14 lines
251 B
C
|
|
// Copyright Sam Bonifacio. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
|
||
|
|
class AUTOSETTINGSCORE_API FConfigUtils
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
|
||
|
|
static void MigrateConfigPropertiesFromSection(UObject* Object, FString OldConfig, FString OldSection);
|
||
|
|
|
||
|
|
};
|