TestRoot.cs 832 B

1234567891011121314151617181920212223242526272829
  1. // -----------------------------------------------------------------------
  2. // <copyright file="TestRoot.cs" company="Steven Kirk">
  3. // Copyright 2014 MIT Licence. See licence.md for more information.
  4. // </copyright>
  5. // -----------------------------------------------------------------------
  6. namespace Perspex.SceneGraph.UnitTests
  7. {
  8. using System;
  9. using Perspex.Platform;
  10. using Perspex.Rendering;
  11. public class TestRoot : TestVisual, IRenderRoot
  12. {
  13. public IRenderer Renderer
  14. {
  15. get { throw new NotImplementedException(); }
  16. }
  17. public IRenderManager RenderManager
  18. {
  19. get { throw new NotImplementedException(); }
  20. }
  21. public Point TranslatePointToScreen(Point p)
  22. {
  23. throw new NotImplementedException();
  24. }
  25. }
  26. }