3
0

DiffuseProbeGridModule.h 916 B

123456789101112131415161718192021222324252627282930313233
  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. #pragma once
  9. #include <AzCore/Memory/SystemAllocator.h>
  10. #include <AzCore/Module/Module.h>
  11. namespace AZ
  12. {
  13. namespace Render
  14. {
  15. class DiffuseProbeGridModule
  16. : public AZ::Module
  17. {
  18. public:
  19. AZ_RTTI(DiffuseProbeGridModule, "{72F3860A-0EA6-4C61-9EE0-DF0D690FD53B}", AZ::Module);
  20. AZ_CLASS_ALLOCATOR(DiffuseProbeGridModule, AZ::SystemAllocator);
  21. DiffuseProbeGridModule();
  22. //! Add required SystemComponents to the SystemEntity.
  23. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  24. };
  25. }
  26. }
  27. AZ_DECLARE_MODULE_CLASS(Gem_DiffuseProbeGrid, AZ::Render::DiffuseProbeGridModule)