ScriptCanvasPhysicsSystemComponent.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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 ScriptCanvasPhysics
  11. {
  12. class ScriptCanvasPhysicsSystemComponent
  13. : public AZ::Component
  14. {
  15. public:
  16. AZ_COMPONENT(ScriptCanvasPhysicsSystemComponent, "{F70E22C3-B940-42F3-B4D9-6A7C5E0F2C4E}");
  17. static void Reflect(AZ::ReflectContext* context);
  18. static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
  19. static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
  20. static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
  21. static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent);
  22. protected:
  23. ////////////////////////////////////////////////////////////////////////
  24. // AZ::Component...
  25. void Init() override;
  26. void Activate() override;
  27. void Deactivate() override;
  28. ////////////////////////////////////////////////////////////////////////
  29. };
  30. }