29 lines
611 B
C++
29 lines
611 B
C++
// Copyright 2022 (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "Commandlets/Commandlet.h"
|
|
|
|
#include <Runtime/Core/Public/Misc/AutomationTest.h>
|
|
#include <Runtime/CoreUObject/Public/UObject/ObjectMacros.h>
|
|
#include <Runtime/Engine/Classes/Commandlets/Commandlet.h>
|
|
|
|
#include "VSTestAdapterCommandlet.generated.h"
|
|
|
|
UCLASS()
|
|
class UVSTestAdapterCommandlet
|
|
: public UCommandlet
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UVSTestAdapterCommandlet();
|
|
|
|
public:
|
|
virtual int32 Main(const FString &Params) override;
|
|
|
|
private:
|
|
void PrintHelp() const;
|
|
};
|