Removes Utilities/Command.cpp/h from Gems/ScriptCanvas

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2022-01-05 19:23:26 -08:00
parent 7b1e06fac6
commit 1342d54c7d
3 changed files with 0 additions and 45 deletions
@@ -1,14 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include "Command.h"
namespace ScriptCanvasEditor
{
}
@@ -1,29 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
#include <AzCore/std/string/string.h>
namespace ScriptCanvasEditor
{
// Commands are named wrappers around ebus events
class Command
{
public:
//template <typename ...args>
//void Execute(const char* commandName, args&&... parameters);
private:
AZStd::string m_commandName;
AZStd::string m_description;
AZStd::string m_category;
AZStd::string m_iconPath;
};
}
@@ -119,8 +119,6 @@ set(FILES
Editor/Undo/ScriptCanvasGraphCommand.h
Editor/Undo/ScriptCanvasUndoManager.cpp
Editor/Undo/ScriptCanvasUndoManager.h
Editor/Utilities/Command.h
Editor/Utilities/Command.cpp
Editor/Utilities/CommonSettingsConfigurations.h
Editor/Utilities/CommonSettingsConfigurations.cpp
Editor/Utilities/RecentFiles.h