3
0

CompressionModule.cpp 766 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 <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. AZ_DECLARE_MODULE_CLASS(Gem_Compression, Compression::CompressionModule)