You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
32 lines
736 B
C++
32 lines
736 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Commandlets/Commandlet.h"
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
|
|
#include "SavePackageUtilitiesCommandlet.generated.h"
|
|
|
|
/*
|
|
* Commandlet used to validate the package saving mechanism.
|
|
* It can currently compare two back to back saves of a package (or folder of packages)
|
|
*/
|
|
UCLASS()
|
|
class USavePackageUtilitiesCommandlet
|
|
: public UCommandlet
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
public:
|
|
//~ Begin UCommandlet Interface
|
|
virtual int32 Main(const FString& Params) override;
|
|
//~ End UCommandlet Interface
|
|
|
|
private:
|
|
void InitParameters(const FString& Params);
|
|
|
|
TArray<FString> PackageNames;
|
|
class ITargetPlatform* TargetPlatform = nullptr;
|
|
};
|