MachineLearningModule.cpp 564 B

1234567891011121314151617
  1. #include <MachineLearning/MachineLearningTypeIds.h>
  2. #include <MachineLearningModuleInterface.h>
  3. #include "MachineLearningSystemComponent.h"
  4. namespace MachineLearning
  5. {
  6. class MachineLearningModule
  7. : public MachineLearningModuleInterface
  8. {
  9. public:
  10. AZ_RTTI(MachineLearningModule, MachineLearningModuleTypeId, MachineLearningModuleInterface);
  11. AZ_CLASS_ALLOCATOR(MachineLearningModule, AZ::SystemAllocator);
  12. };
  13. }// namespace MachineLearning
  14. AZ_DECLARE_MODULE_CLASS(Gem_MachineLearning, MachineLearning::MachineLearningModule)