コード例 #1
0
ファイル: Selector.cs プロジェクト: CatmanIta/FuzzyTactics
 public void point( GameElement pointedElement  )
 {
     // Send the selected element to the pointed element
     // and vice-versa!
     if (selectedElement) {
         pointedElement.sendSelection(selectedElement);
         selectedElement.sendSelection(pointedElement);
     }
 }