WhiteBoxEditorModule.h 692 B

12345678910111213141516171819202122232425262728
  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 "WhiteBoxModule.h"
  10. namespace WhiteBox
  11. {
  12. class WhiteBoxEditorModule : public WhiteBoxModule
  13. {
  14. public:
  15. AZ_CLASS_ALLOCATOR_DECL
  16. AZ_RTTI(WhiteBoxEditorModule, "{DAB2F46E-29A1-4898-9D4B-EB0EA41BDA32}", WhiteBoxModule);
  17. WhiteBoxEditorModule();
  18. ~WhiteBoxEditorModule();
  19. // WhiteBoxModule ...
  20. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  21. };
  22. } // namespace WhiteBox