EditorStarsSystemComponent.h 958 B

12345678910111213141516171819202122232425262728293031
  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 <StarsSystemComponent.h>
  10. namespace AZ::Render
  11. {
  12. class EditorStarsSystemComponent
  13. : public StarsSystemComponent
  14. {
  15. using BaseSystemComponent = StarsSystemComponent;
  16. public:
  17. AZ_COMPONENT(EditorStarsSystemComponent, "{346580C8-6084-4439-87B6-7DF1F734ED86}", BaseSystemComponent);
  18. static void Reflect(AZ::ReflectContext* context);
  19. EditorStarsSystemComponent() = default;
  20. ~EditorStarsSystemComponent() = default;
  21. private:
  22. static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
  23. static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
  24. };
  25. } // namespace Stars