public void tower_laserTower_untarget(LaserTower tower, int untargetMinionId) { if (tower is LaserTower) { LaserTowerGUI gui = tower.tag as LaserTowerGUI; gui.untargetMinion(untargetMinionId); } }
public void tower_laserTower_target(LaserTower tower, Minion targetMinion) { LaserTowerGUI gui = tower.tag as LaserTowerGUI; gui.targetMinion(targetMinion); }