EM_Task/UnrealEd/Private/Commandlets/IoStoreCommandlet.cpp
Boshuang Zhao 5144a49c9b add
2026-02-13 16:18:33 +08:00

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);
}