I'm Coding for School in Greenfoot on a plugin with which I can program a rover moving over a field...
I want to add two objects with "addObject" on the same.
Mark mark = new Mark();
Rover rover = new Rover();
addObject(mark && rover, 0, (int)(Math.random() *getHeight()));
This isn't possible. Is there anyway to get this done? I hope you understood what I meant:)