CommonFeaturesSystemComponent.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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/Component/Component.h>
  10. namespace AZ
  11. {
  12. namespace Render
  13. {
  14. class AtomLyIntegrationCommonFeaturesSystemComponent
  15. : public AZ::Component
  16. {
  17. public:
  18. AZ_COMPONENT(AtomLyIntegrationCommonFeaturesSystemComponent, "{E29DAE7C-BF0F-42A9-9570-037FBB689A0A}");
  19. static void Reflect(AZ::ReflectContext* context);
  20. static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
  21. static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
  22. static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
  23. static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent);
  24. protected:
  25. ////////////////////////////////////////////////////////////////////////
  26. // AZ::Component interface implementation
  27. void Init() override;
  28. void Activate() override;
  29. void Deactivate() override;
  30. ////////////////////////////////////////////////////////////////////////
  31. };
  32. } // namespace Render
  33. } // namespace AZ