CompressionModule.cpp 892 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 <CompressionModuleInterface.h>
  9. #include <Compression/CompressionTypeIds.h>
  10. namespace Compression
  11. {
  12. class CompressionModule
  13. : public CompressionModuleInterface
  14. {
  15. public:
  16. AZ_RTTI(CompressionModule, CompressionModuleTypeId, CompressionModuleInterface);
  17. AZ_CLASS_ALLOCATOR(CompressionModule, AZ::SystemAllocator);
  18. CompressionModule() = default;
  19. ~CompressionModule() = default;
  20. };
  21. }// namespace Compression
  22. #if defined(O3DE_GEM_NAME)
  23. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), Compression::CompressionModule)
  24. #else
  25. AZ_DECLARE_MODULE_CLASS(Gem_Compression, Compression::CompressionModule)
  26. #endif