MotionMatchingModule.cpp 910 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 <MotionMatchingModuleInterface.h>
  9. #include <MotionMatchingSystemComponent.h>
  10. namespace EMotionFX::MotionMatching
  11. {
  12. class MotionMatchingModule
  13. : public MotionMatchingModuleInterface
  14. {
  15. public:
  16. AZ_RTTI(MotionMatchingModule, "{cf4381d1-0207-4ef8-85f0-6c88ec28a7b6}", MotionMatchingModuleInterface);
  17. AZ_CLASS_ALLOCATOR(MotionMatchingModule, AZ::SystemAllocator);
  18. };
  19. }// namespace EMotionFX::MotionMatching
  20. #if defined(O3DE_GEM_NAME)
  21. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), EMotionFX::MotionMatching::MotionMatchingModule)
  22. #else
  23. AZ_DECLARE_MODULE_CLASS(Gem_MotionMatching, EMotionFX::MotionMatching::MotionMatchingModule)
  24. #endif