EditorSystemComponent.h 891 B

123456789101112131415161718192021222324252627282930313233
  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. #include <Integration/AnimationBus.h>
  11. namespace AZ::EMotionFXAtom
  12. {
  13. class EditorSystemComponent
  14. : public Component
  15. , private EMotionFX::Integration::SystemNotificationBus::Handler
  16. {
  17. public:
  18. AZ_COMPONENT(EditorSystemComponent, "{1FAEC046-255D-4664-8F12-D16503C34431}");
  19. static void Reflect(ReflectContext* context);
  20. protected:
  21. // AZ::Component overrides
  22. void Activate() override;
  23. void Deactivate() override;
  24. // SystemNotificationBus::OnRegisterPlugin
  25. void OnRegisterPlugin() override;
  26. };
  27. } // namespace AZ::EMotionFXAtom