this is kind of hard to word so just bear with me.
I am trying to add lets say 7 actors. but being lazy I want to make or a Method that will add the 7.
here is what I have so far
so instead of having to make 7 new rope's is there a way or could I make a Method that i could call and it would make 7 ropes and also line the ropes up side by side?
MyWorld(){
// size of world blah blah.
Rope R= new Rope();
this.addObject(R, this.getwidth(), this.getHeight();
}
