IntersectionRuneType.cs 360 B

1234567891011121314151617181920
  1. #nullable disable
  2. namespace Terminal.Gui.Drawing;
  3. /// <summary>The type of Rune that we will use before considering double width, curved borders etc</summary>
  4. internal enum IntersectionRuneType
  5. {
  6. None,
  7. Dot,
  8. ULCorner,
  9. URCorner,
  10. LLCorner,
  11. LRCorner,
  12. TopTee,
  13. BottomTee,
  14. RightTee,
  15. LeftTee,
  16. Cross,
  17. HLine,
  18. VLine
  19. }