SimulationInterfacesModule.cpp 987 B

123456789101112131415161718192021222324252627
  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 "SimulationEntitiesManager.h"
  9. #include <SimulationInterfaces/SimulationInterfacesTypeIds.h>
  10. #include <SimulationInterfacesModuleInterface.h>
  11. namespace SimulationInterfaces
  12. {
  13. class SimulationInterfacesModule : public SimulationInterfacesModuleInterface
  14. {
  15. public:
  16. AZ_RTTI(SimulationInterfacesModule, SimulationInterfacesModuleTypeId, SimulationInterfacesModuleInterface);
  17. AZ_CLASS_ALLOCATOR(SimulationInterfacesModule, AZ::SystemAllocator);
  18. };
  19. } // namespace SimulationInterfaces
  20. #if defined(O3DE_GEM_NAME)
  21. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), SimulationInterfaces::SimulationInterfacesModule)
  22. #else
  23. AZ_DECLARE_MODULE_CLASS(Gem_SimulationInterfaces, SimulationInterfaces::SimulationInterfacesModule)
  24. #endif