コード例 #1
0
ファイル: GraphicsGame.cs プロジェクト: btasdoven/ScienceWars
 public void tower_laserTower_untarget(LaserTower tower, int untargetMinionId)
 {
     if (tower is LaserTower)
     {
         LaserTowerGUI gui = tower.tag as LaserTowerGUI;
         gui.untargetMinion(untargetMinionId);
     }
 }
コード例 #2
0
ファイル: GraphicsGame.cs プロジェクト: btasdoven/ScienceWars
 public void tower_laserTower_target(LaserTower tower, Minion targetMinion)
 {
     LaserTowerGUI gui = tower.tag as LaserTowerGUI;
     gui.targetMinion(targetMinion);
 }