示例#1
0
 public void SetNewShape(ShapeData data)
 {
     GhostPrivate = Factory.Create(data).GetGhost();
     Dirty        = true;
 }
示例#2
0
 public NewShape(ShapeData data)
 {
     _data = data;
 }
示例#3
0
 public ShapeBase(ShapeType type)
 {
     _data = new ShapeData(type);
 }