Planet_StormSystemComponent.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #pragma once
  2. #include <AzCore/Component/Component.h>
  3. #include <Planet_Storm/Planet_StormBus.h>
  4. namespace Planet_Storm
  5. {
  6. class Planet_StormSystemComponent
  7. : public AZ::Component
  8. , protected Planet_StormRequestBus::Handler
  9. {
  10. public:
  11. AZ_COMPONENT(Planet_StormSystemComponent, "{6d1e1f5c-4dfc-4e90-8efd-62c5951ca555}");
  12. static void Reflect(AZ::ReflectContext* context);
  13. static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
  14. static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
  15. static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
  16. static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent);
  17. Planet_StormSystemComponent();
  18. ~Planet_StormSystemComponent();
  19. protected:
  20. ////////////////////////////////////////////////////////////////////////
  21. // Planet_StormRequestBus interface implementation
  22. ////////////////////////////////////////////////////////////////////////
  23. ////////////////////////////////////////////////////////////////////////
  24. // AZ::Component interface implementation
  25. void Init() override;
  26. void Activate() override;
  27. void Deactivate() override;
  28. ////////////////////////////////////////////////////////////////////////
  29. };
  30. }