RemoteToolsModule.cpp 824 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. #include <RemoteToolsModuleInterface.h>
  9. #include <RemoteToolsSystemComponent.h>
  10. namespace RemoteTools
  11. {
  12. class RemoteToolsModule
  13. : public RemoteToolsModuleInterface
  14. {
  15. public:
  16. AZ_RTTI(RemoteToolsModule, "{86ed333f-1f40-497f-ac31-9de31dee9371}", RemoteToolsModuleInterface);
  17. AZ_CLASS_ALLOCATOR(RemoteToolsModule, AZ::SystemAllocator);
  18. };
  19. }// namespace RemoteTools
  20. #if defined(O3DE_GEM_NAME)
  21. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), RemoteTools::RemoteToolsModule)
  22. #else
  23. AZ_DECLARE_MODULE_CLASS(Gem_RemoteTools, RemoteTools::RemoteToolsModule)
  24. #endif