ArchiveModule.cpp 665 B

123456789101112131415161718192021222324
  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 <Archive/ArchiveTypeIds.h>
  9. #include <ArchiveModuleInterface.h>
  10. #include "ArchiveSystemComponent.h"
  11. namespace Archive
  12. {
  13. class ArchiveModule
  14. : public ArchiveModuleInterface
  15. {
  16. public:
  17. AZ_RTTI(ArchiveModule, ArchiveModuleTypeId, ArchiveModuleInterface);
  18. AZ_CLASS_ALLOCATOR(ArchiveModule, AZ::SystemAllocator);
  19. };
  20. }// namespace Archive
  21. AZ_DECLARE_MODULE_CLASS(Gem_Archive, Archive::ArchiveModule)