* remove the last main creation from the creations list, and also call the destroy() method.
*/
public MainCreation removeLastCreation(){
if(!creations.isEmpty()){
MainCreation c=this.creations.get(creations.size()-1);
c.destroy();
return c;
}
return null;
}
/**