Node.cs 255 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. namespace TreeCanvas
  7. {
  8. class Node
  9. {
  10. private Point point;
  11. public Node(Point point)
  12. {
  13. this.point = point;
  14. }
  15. }
  16. }