DiffuseProbeGridModule.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. #if defined(O3DE_GEM_NAME)
  28. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), AZ::Render::DiffuseProbeGridModule)
  29. #else
  30. AZ_DECLARE_MODULE_CLASS(Gem_DiffuseProbeGrid, AZ::Render::DiffuseProbeGridModule)
  31. #endif