RecastNavigationModule.cpp 895 B

1234567891011121314151617181920212223242526272829
  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 <RecastNavigationModuleInterface.h>
  9. #include <RecastNavigationSystemComponent.h>
  10. namespace RecastNavigation
  11. {
  12. class RecastNavigationModule
  13. : public RecastNavigationModuleInterface
  14. {
  15. public:
  16. AZ_RTTI(RecastNavigationModule, "{a8fb0082-78ab-4ca6-8f63-68c98f1a6a6d}", RecastNavigationModuleInterface);
  17. AZ_CLASS_ALLOCATOR(RecastNavigationModule, AZ::SystemAllocator);
  18. };
  19. }// namespace RecastNavigation
  20. #if defined(O3DE_GEM_NAME)
  21. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), RecastNavigation::RecastNavigationModule)
  22. #else
  23. AZ_DECLARE_MODULE_CLASS(Gem_RecastNavigation, RecastNavigation::RecastNavigationModule)
  24. #endif