TestRoot.cs 818 B

1234567891011121314151617181920212223242526272829303132
  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 IRenderTarget RenderTarget
  11. {
  12. get { throw new NotImplementedException(); }
  13. }
  14. public IRenderQueueManager RenderQueueManager
  15. {
  16. get { throw new NotImplementedException(); }
  17. }
  18. public Point PointToClient(Point p)
  19. {
  20. throw new NotImplementedException();
  21. }
  22. public Point PointToScreen(Point p)
  23. {
  24. throw new NotImplementedException();
  25. }
  26. }
  27. }