public GameObject archerTower = null;
// Use this for initialization
void OnClick ()
{
if (Player.gold >= ArcherTowerStats.towerCost)
{
Player.gold -= ArcherTowerStats.towerCost;
Instantiate (archerTower, transform.position, Quaternion.identity);
gameObject.SetActive(false);
}
}