EM_Task/UnrealEd/Private/Commandlets/IoStoreCommandlet.cpp

15 lines
353 B
C++
Raw Permalink Normal View History

2026-02-13 16:18:33 +08:00
// 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);
}