EditorCommonSystemComponent.h 1.3 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/Component/Component.h>
  10. namespace AZ
  11. {
  12. namespace Render
  13. {
  14. //! This is the editor-counterpart to this gem's main CommonSystemComponent class.
  15. class EditorCommonSystemComponent
  16. : public AZ::Component
  17. {
  18. public:
  19. AZ_COMPONENT(EditorCommonSystemComponent, "{D688E7FA-576B-4590-93D5-FEBB7B1D782D}");
  20. static void Reflect(AZ::ReflectContext* context);
  21. static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
  22. static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
  23. static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
  24. static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent);
  25. protected:
  26. // AZ::Component interface overrides...
  27. void Init() override;
  28. void Activate() override;
  29. void Deactivate() override;
  30. };
  31. } // namespace Render
  32. } // namespace AZ