hi guys I am new to greenfoot and object-oriented code in general, I was wondering if there is a way to place objects on the world by selecting new (actor name) and pressing the position then saving this position every time the world is loaded instead of doing the following:
Crab crab = new Crab();
addObject(crab,165,215);
Worm worm = new Worm();
addObject(worm,411,187);

