public static void SellTower(this InGame inGame, Tower tower) { inGame.SellTower(tower.GetTowerToSim()); }
public static void SellTowers(this InGame inGame, List <Tower> towers) { towers.ForEach(tower => inGame.SellTower(tower)); }