first commit

This commit is contained in:
DuOtto
2026-04-28 13:17:01 +02:00
commit c7c37b339c
106 changed files with 6310 additions and 0 deletions
@@ -0,0 +1,25 @@
// Copyright 2022 (c) Microsoft. All rights reserved.
// Licensed under the MIT License.
#pragma once
#include "CoreMinimal.h"
#include "VisualStudioToolsCommandletBase.h"
#include "BlueprintReferencesCommandlet.generated.h"
UCLASS()
class UVsBlueprintReferencesCommandlet
: public UVisualStudioToolsCommandletBase
{
GENERATED_BODY()
public:
UVsBlueprintReferencesCommandlet();
int32 Run(
TArray<FString>& Tokens,
TArray<FString>& Switches,
TMap<FString, FString>& ParamVals,
FArchive& OutArchive) override;
};