15 lines
353 B
C++
15 lines
353 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#include "Commandlets/IoStoreCommandlet.h"
|
||
|
|
#include "IoStoreUtilities.h"
|
||
|
|
|
||
|
|
UIoStoreCommandlet::UIoStoreCommandlet(const FObjectInitializer& ObjectInitializer)
|
||
|
|
: Super(ObjectInitializer)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
int32 UIoStoreCommandlet::Main(const FString& Params)
|
||
|
|
{
|
||
|
|
return CreateIoStoreContainerFiles(*Params);
|
||
|
|
}
|