VideoPlaybackFrameworkModule.h 827 B

12345678910111213141516171819202122232425262728293031
  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. #pragma once
  9. #include <AzCore/Module/Module.h>
  10. #include <AzCore/Memory/SystemAllocator.h>
  11. namespace VideoPlaybackFramework
  12. {
  13. class VideoPlaybackFrameworkModule
  14. : public AZ::Module
  15. {
  16. public:
  17. AZ_RTTI(VideoPlaybackFrameworkModule, "{5FCBDEE8-C3EC-45DD-9B71-B37D1F7A299A}", AZ::Module);
  18. AZ_CLASS_ALLOCATOR(VideoPlaybackFrameworkModule, AZ::SystemAllocator);
  19. VideoPlaybackFrameworkModule();
  20. /**
  21. * Add required SystemComponents to the SystemEntity.
  22. */
  23. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  24. };
  25. }