AutomationIds.h 775 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzCore/Math/Crc.h>
  10. #include <GraphCanvas/Editor/EditorTypes.h>
  11. namespace ScriptCanvasEditor
  12. {
  13. namespace AutomationIds
  14. {
  15. static const AZ::Crc32 NodePaletteDockWidget = AZ_CRC_CE("SC_NodePaletteDockWidget");
  16. static const AZ::Crc32 NodePaletteWidget = AZ_CRC_CE("SC_NodePaletteWidget");
  17. static const AZ::Crc32 CreateScriptCanvasButton = AZ_CRC_CE("SC_CreateRuntimeScriptCanvas");
  18. static const AZ::Crc32 CreateScriptCanvasFunctionButton = AZ_CRC_CE("SC_CreateScriptCanvasFunction");
  19. }
  20. }