コード例 #1
0
 public void Refresh()
 {
     drawer.ClearPriceShapes();
     drawer.ClearShapes();
     if (title != null)
     {
         drawer.DrawShape(title);
     }
     for (int i = 0; i < priceShapes.Count; i++)
     {
         DrawShape(priceShapes[i]);
     }
 }
コード例 #2
0
ファイル: StrategyDrawer.cs プロジェクト: wanwei/sc2
 public void ClearShapes()
 {
     this.shapes.Clear();
     drawer.ClearShapes();
     drawer.ClearPriceShapes();
 }