Files
ShipyardSaudi/Plugins/Auto_Setup_1.22/Source/RLPlugin/Private/CCImportUI.h
T
2023-03-15 12:46:56 +05:00

34 lines
691 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "CCImportUI.generated.h"
/**
* TODO:
*/
UCLASS( config = EditorPerProjectUserSettings, AutoExpandCategories = ( FTransform ), HideCategories = Object, MinimalAPI )
class UCCImportUI : public UObject
{
GENERATED_BODY()
public:
UCCImportUI( const FObjectInitializer& kObjectInitializer );
void WriteConfig();
private:
void ReadConfig();
public:
bool isCCAutoSetup;
bool isHQSkin;
bool isLWSkin;
bool isStandardSkin;
bool isCanceled;
bool isCanChangeAutoEnable;
bool hasCCShader;
bool isLiveLink;
};