MeshletsModule.cpp 859 B

1234567891011121314151617181920212223242526272829303132
  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 <MeshletsModuleInterface.h>
  9. #include <MeshletsSystemComponent.h>
  10. namespace AZ
  11. {
  12. namespace Meshlets
  13. {
  14. class MeshletsModule
  15. : public MeshletsModuleInterface
  16. {
  17. public:
  18. AZ_RTTI(MeshletsModule, "{19bbf909-a4fc-48ec-915a-316046feb2f9}", MeshletsModuleInterface);
  19. AZ_CLASS_ALLOCATOR(MeshletsModule, AZ::SystemAllocator);
  20. };
  21. } // namespace Meshlets
  22. } // namespace AZ
  23. #if defined(O3DE_GEM_NAME)
  24. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), AZ::Meshlets::MeshletsModule)
  25. #else
  26. AZ_DECLARE_MODULE_CLASS(Gem_Meshlets, AZ::Meshlets::MeshletsModule)
  27. #endif