WarehouseAutomationEditorModule.cpp 884 B

12345678910111213141516171819202122232425
  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. #include <WarehouseAutomationModuleInterface.h>
  9. namespace WarehouseAutomation
  10. {
  11. class WarehouseAutomationEditorModule : public WarehouseAutomationModuleInterface
  12. {
  13. public:
  14. AZ_RTTI(WarehouseAutomationEditorModule, "{906B71F8-374D-4F8E-B8F2-EAFEFF863F7F}", WarehouseAutomationModuleInterface);
  15. AZ_CLASS_ALLOCATOR(WarehouseAutomationEditorModule, AZ::SystemAllocator);
  16. WarehouseAutomationEditorModule()
  17. {
  18. m_descriptors.insert(m_descriptors.end(), {});
  19. }
  20. };
  21. } // namespace WarehouseAutomation
  22. AZ_DECLARE_MODULE_CLASS(Gem_WarehouseAutomation, WarehouseAutomation::WarehouseAutomationEditorModule)