MeshletsModule.cpp 735 B

123456789101112131415161718192021222324252627
  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. AZ_DECLARE_MODULE_CLASS(Gem_Meshlets, AZ::Meshlets::MeshletsModule)