GraphCanvasModule.h 767 B

12345678910111213141516171819202122232425262728293031
  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/Module/Module.h>
  10. namespace GraphCanvas
  11. {
  12. /*!
  13. * The GraphCanvas module class coordinates with the application
  14. * to reflect classes and create system components.
  15. *
  16. */
  17. class GraphCanvasModule
  18. : public AZ::Module
  19. {
  20. public:
  21. AZ_RTTI(GraphCanvasModule, "{83DD6BEA-CFA0-4848-A8EF-C4E0714B876D}", AZ::Module);
  22. GraphCanvasModule();
  23. ~GraphCanvasModule() override = default;
  24. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  25. };
  26. }