CubeMapCaptureComponent.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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 <CubeMapCapture/CubeMapCaptureComponentController.h>
  10. #include <CubeMapCapture/CubeMapCaptureComponentConstants.h>
  11. #include <AzFramework/Components/ComponentAdapter.h>
  12. namespace AZ
  13. {
  14. namespace Render
  15. {
  16. class CubeMapCaptureComponent final
  17. : public AzFramework::Components::ComponentAdapter<CubeMapCaptureComponentController, CubeMapCaptureComponentConfig>
  18. {
  19. public:
  20. using BaseClass = AzFramework::Components::ComponentAdapter<CubeMapCaptureComponentController, CubeMapCaptureComponentConfig>;
  21. AZ_COMPONENT(AZ::Render::CubeMapCaptureComponent, CubeMapCaptureComponentTypeId, BaseClass);
  22. CubeMapCaptureComponent() = default;
  23. CubeMapCaptureComponent(const CubeMapCaptureComponentConfig& config);
  24. static void Reflect(AZ::ReflectContext* context);
  25. };
  26. } // namespace Render
  27. } // namespace AZ