18 lines
576 B
C++
18 lines
576 B
C++
// Copyright (c) 2014-2022 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
/**
|
|
* Editor only console commands.
|
|
*
|
|
* Such commands can be executed from the editor output log window, but also from command line arguments,
|
|
* from Editor Blueprints utilities, or from C++ Code using. eg. GEngine->Exec("git status Content/");
|
|
*/
|
|
class GitSourceControlConsole
|
|
{
|
|
public:
|
|
// Git Command Line Interface: Run 'git' commands directly from the Unreal Editor Console.
|
|
static void ExecuteGitConsoleCommand(const TArray<FString>& a_args);
|
|
}; |