SimulationInterfacesModule.cpp 843 B

1234567891011121314151617181920212223
  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. AZ_DECLARE_MODULE_CLASS(Gem_SimulationInterfaces, SimulationInterfaces::SimulationInterfacesModule)