You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
21 lines
535 B
C++
21 lines
535 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Commandlets/Commandlet.h"
|
|
#include "PackageSourceControlHelper.h"
|
|
#include "WorldPartitionBuilderCommandlet.generated.h"
|
|
|
|
class UWorldPartitionBuilder;
|
|
|
|
UCLASS(Config=Engine)
|
|
class UWorldPartitionBuilderCommandlet : public UCommandlet
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
//~ Begin UCommandlet Interface
|
|
virtual int32 Main(const FString& Params) override;
|
|
//~ End UCommandlet Interface
|
|
|
|
UWorldPartitionBuilder* CreateBuilder(const FString& WorldConfigFilename);
|
|
}; |