Hi :)
I want to create objects dependent on a variable.
Example-Method:
public Object createObject( object)
{
newObject = new object;
return newObject;
}
I looked up the command for creating an object in the world class: Example: Wall wall = new Wall();
But I can't simply write new (); or something like this, and I'm out of ideas.
Any help would be appreciated :)
Thank you ;)

