You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Zousar.Shaker, Devin.Doucette #rn Minor Cooking [CL 15393096 by Matt Peters in ue5-main branch]
23 lines
487 B
C++
23 lines
487 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Commandlets/Commandlet.h"
|
|
|
|
#include "EditorDomainSaveCommandlet.generated.h"
|
|
|
|
/** Runs the EditorDomainSave server for client Editor and CookCommandlet processes. */
|
|
UCLASS(config = Editor)
|
|
class UEditorDomainSaveCommandlet
|
|
: public UCommandlet
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
public:
|
|
|
|
//~ Begin UCommandlet Interface
|
|
virtual int32 Main(const FString& CmdLineParams) override;
|
|
//~ End UCommandlet Interface
|
|
};
|
|
|