GraphCanvasGameModule.cpp 669 B

12345678910111213141516171819202122232425262728
  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. #include <GraphCanvasModule.h>
  9. namespace GraphCanvas
  10. {
  11. GraphCanvasModule::GraphCanvasModule()
  12. {
  13. }
  14. AZ::ComponentTypeList GraphCanvasModule::GetRequiredSystemComponents() const
  15. {
  16. return AZ::ComponentTypeList{};
  17. }
  18. }
  19. #if defined(O3DE_GEM_NAME)
  20. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), GraphCanvas::GraphCanvasModule)
  21. #else
  22. AZ_DECLARE_MODULE_CLASS(Gem_GraphCanvas, GraphCanvas::GraphCanvasModule)
  23. #endif