EM_Task/UnrealEd/Classes/Commandlets/FileServerCommandlet.h
Boshuang Zhao 5144a49c9b add
2026-02-13 16:18:33 +08:00

35 lines
814 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
/*=============================================================================
FileServerCommandlet.h: Declares the UFileServerCommandlet class.
=============================================================================*/
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Misc/Guid.h"
#include "Commandlets/Commandlet.h"
#include "FileServerCommandlet.generated.h"
/**
* Implements a file server commandlet.
*/
UCLASS()
class UFileServerCommandlet
: public UCommandlet
{
GENERATED_UCLASS_BODY()
public:
//~ Begin UCommandlet Interface
virtual int32 Main(const FString& Params) override;
//~ End UCommandlet Interface
private:
// Holds the instance identifier.
FGuid InstanceId;
};