Developer.h 519 B

12345678910111213141516171819202122
  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/std/containers/vector.h>
  10. namespace AZ
  11. {
  12. class ComponentDescriptor;
  13. } // namespace AZ
  14. namespace ScriptCanvas::Developer
  15. {
  16. void InitNodeRegistry();
  17. AZStd::vector<AZ::ComponentDescriptor*> GetComponentDescriptors();
  18. } // namespace ScriptCanvas::Developer