TestRoot.cs 714 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) The Perspex Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. using Perspex.Platform;
  5. using Perspex.Rendering;
  6. namespace Perspex.SceneGraph.UnitTests
  7. {
  8. public class TestRoot : TestVisual, IRenderRoot
  9. {
  10. public IRenderingViewport Viewport
  11. {
  12. get { throw new NotImplementedException(); }
  13. }
  14. public IRenderQueueManager RenderQueueManager
  15. {
  16. get { throw new NotImplementedException(); }
  17. }
  18. public Point TranslatePointToScreen(Point p)
  19. {
  20. throw new NotImplementedException();
  21. }
  22. }
  23. }