MachineLearningModule.cpp 785 B

123456789101112131415161718192021222324
  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 <MachineLearning/MachineLearningTypeIds.h>
  9. #include <MachineLearningModuleInterface.h>
  10. #include "MachineLearningSystemComponent.h"
  11. namespace MachineLearning
  12. {
  13. class MachineLearningModule
  14. : public MachineLearningModuleInterface
  15. {
  16. public:
  17. AZ_RTTI(MachineLearningModule, MachineLearningModuleTypeId, MachineLearningModuleInterface);
  18. AZ_CLASS_ALLOCATOR(MachineLearningModule, AZ::SystemAllocator);
  19. };
  20. }// namespace MachineLearning
  21. AZ_DECLARE_MODULE_CLASS(Gem_MachineLearning, MachineLearning::MachineLearningModule)