DisplayRoot.cs 273 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CommonLang.Geometry.SceneGraph2D
  6. {
  7. public class DisplayRoot : DisplayNode
  8. {
  9. public DisplayRoot()
  10. {
  11. this.parent = null;
  12. }
  13. }
  14. }