2012-03-10, 08:30 PM
just make a loop and create a new object for each element of the array
Code:
for(int i =0; i < 3; i++)
{
t[i] = new Tower();
}
