Hi
I suppose your objects are created from a class?
You can create them like this:
ArrayList<ClassName> objectlist = new ArrayList<ClassName>();
objectlist.add(new ClassName());
And then control each one using a for-loop:
for (int i = 0; i < objectlist.size(); i++) {
objectlist.get(i).move();
}
or
for (ClassName obj : objectlist) {
obj.move();
}
I hope this helps.
Max