예제 #1
0
파일: Rectangle.cs 프로젝트: shbszxj/demo
 public Rectangle(DrawApi implementor) : base(implementor)
 {
 }
예제 #2
0
파일: Line.cs 프로젝트: shbszxj/demo
 /// <summary>
 /// Initializes a new instance of the <see cref="BridgePattern.Line"/> class.
 /// </summary>
 /// <param name="implementor">The implementor instance to use.</param>
 public Line(DrawApi implementor) : base(implementor)
 {
 }
예제 #3
0
 public Square(DrawApi implementor) : base(implementor)
 {
 }