WhiteBoxModule.h 654 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 <IGem.h>
  10. namespace WhiteBox
  11. {
  12. class WhiteBoxModule : public CryHooksModule
  13. {
  14. public:
  15. AZ_CLASS_ALLOCATOR_DECL
  16. AZ_RTTI(WhiteBoxModule, "{7B6D6056-1C3C-4B0B-B7CF-B1D18956A069}", CryHooksModule);
  17. WhiteBoxModule();
  18. ~WhiteBoxModule();
  19. // AZ::Module ...
  20. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  21. };
  22. } // namespace WhiteBox