2
0

PythonCoverageEditorModule.h 777 B

1234567891011121314151617181920212223242526272829
  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 PythonCoverage
  12. {
  13. class PythonCoverageEditorModule
  14. : public AZ::Module
  15. {
  16. public:
  17. AZ_CLASS_ALLOCATOR_DECL
  18. AZ_RTTI(PythonCoverageEditorModule, "{32C0FFEA-09A7-460F-9257-5BDEF74FCD5B}", AZ::Module);
  19. PythonCoverageEditorModule();
  20. ~PythonCoverageEditorModule();
  21. // PythonCoverageModule ...
  22. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  23. };
  24. } // namespace WhiteBox