MockScene.h 671 B

1234567891011121314151617181920212223242526272829
  1. #pragma once
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. #include <AzTest/AzTest.h>
  10. #include <SceneAPI/SceneCore/Containers/Scene.h>
  11. namespace AZ {
  12. namespace SceneAPI {
  13. namespace Containers {
  14. class MockScene
  15. : public Scene
  16. {
  17. public:
  18. MockScene(const char* name)
  19. : Scene(name)
  20. {}
  21. };
  22. } // namespace Containers
  23. } // namespace SceneAPI
  24. } // namespace AZ