コード例 #1
0
 public override void Draw(Graphics g)
 {
     if (!hasBegun)
     {
         return;
     }
     if (selection != null)
     {
         foreach (ISelectable i in selection)
         {
             GUIVertex gv = i as GUIVertex;
             if (gv == null)
             {
                 continue;
             }
             gv.Draw(g, delta);
         }
     }
 }