AtomSampleViewerToolsSystemComponent.h 867 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. namespace AtomSampleViewer
  11. {
  12. namespace Tools
  13. {
  14. class AtomSampleViewerToolsSystemComponent final
  15. : public AZ::Component
  16. {
  17. public:
  18. AZ_COMPONENT(AtomSampleViewerToolsSystemComponent, "{113A0A09-5828-4035-8327-030D2CFCBD56}");
  19. static void Reflect(AZ::ReflectContext* context);
  20. AtomSampleViewerToolsSystemComponent() = default;
  21. AZ_DISABLE_COPY_MOVE(AtomSampleViewerToolsSystemComponent)
  22. void Activate() override;
  23. void Deactivate() override;
  24. private:
  25. };
  26. }
  27. }