MachineLearningDebugModule.cpp 920 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. #include <Source/Debug/MachineLearningDebugModule.h>
  9. #include <Source/Debug/MachineLearningDebugSystemComponent.h>
  10. namespace MachineLearning
  11. {
  12. MachineLearningDebugModule::MachineLearningDebugModule()
  13. : AZ::Module()
  14. {
  15. m_descriptors.insert(m_descriptors.end(), {
  16. MachineLearningDebugSystemComponent::CreateDescriptor()
  17. });
  18. }
  19. AZ::ComponentTypeList MachineLearningDebugModule::GetRequiredSystemComponents() const
  20. {
  21. return AZ::ComponentTypeList
  22. {
  23. azrtti_typeid<MachineLearningDebugSystemComponent>()
  24. };
  25. }
  26. }
  27. AZ_DECLARE_MODULE_CLASS(Gem_MachineLearning_Debug, MachineLearning::MachineLearningDebugModule);