3
0

GraphCanvasGameModule.cpp 572 B

1234567891011121314151617181920212223
  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. AZ_DECLARE_MODULE_CLASS(GraphCanvas_875b6fcbdeea44deaae7984ad9bb6cdc, GraphCanvas::GraphCanvasModule)