EditorModeFeedbackModule.h 884 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/Memory/SystemAllocator.h>
  10. #include <AzCore/Module/Module.h>
  11. namespace AZ
  12. {
  13. namespace Render
  14. {
  15. //! Module for the editor mode visual feedback gem.
  16. class EditorModeFeedbackModule
  17. : public AZ::Module
  18. {
  19. public:
  20. AZ_CLASS_ALLOCATOR_DECL
  21. AZ_RTTI(EditorModeFeedbackModule, "{9164AB79-409C-4650-922C-F10BA3A0C175}", AZ::Module);
  22. EditorModeFeedbackModule();
  23. // GetRequiredSystemComponents overrides ...
  24. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  25. };
  26. } // namespace Render
  27. } // namespace AZ