StreamerProfilerModule.cpp 862 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 <StreamerProfilerModuleInterface.h>
  9. #include <StreamerProfilerSystemComponent.h>
  10. namespace Streamer
  11. {
  12. class StreamerProfilerModule
  13. : public StreamerProfilerModuleInterface
  14. {
  15. public:
  16. AZ_RTTI(StreamerProfilerModule, "{9d4ba060-2f72-4c52-8c32-63c788517a2f}", StreamerProfilerModuleInterface);
  17. AZ_CLASS_ALLOCATOR(StreamerProfilerModule, AZ::SystemAllocator);
  18. };
  19. }// namespace Streamer
  20. #if defined(O3DE_GEM_NAME)
  21. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), Streamer::StreamerProfilerModule)
  22. #else
  23. AZ_DECLARE_MODULE_CLASS(Gem_StreamerProfiler, Streamer::StreamerProfilerModule)
  24. #endif