WarehouseAutomationModule.cpp 738 B

1234567891011121314151617181920
  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 WarehouseAutomationModule : public WarehouseAutomationModuleInterface
  12. {
  13. public:
  14. AZ_RTTI(WarehouseAutomationModule, "{E7816766-0AE9-4B3E-A9EA-F80CCE35A6D5}", WarehouseAutomationModuleInterface);
  15. AZ_CLASS_ALLOCATOR(WarehouseAutomationModule, AZ::SystemAllocator);
  16. };
  17. } // namespace WarehouseAutomation
  18. AZ_DECLARE_MODULE_CLASS(Gem_WarehouseAutomation, WarehouseAutomation::WarehouseAutomationModule)