
The World is the top-most class of NxOgre; it is responsible for handling of all the Scenes and indirectly working with it’s friends; the Singletons. World is normally the first to be created, and most always the last destroyed.
When we create the World, we normally give it a Description. A bit like a mug shot; What kind of ice-cream it likes?, What’s it’s favourite colour?, Where it get’s hair done?, things like that. We give the description to the World or any other class that likes descriptions for it to read and pretend to be that class you stole the description from.
WorldDescription description;
description.mNoHardware = true;
World* mWorld = World::createWorld(description);
At this point, World seems very boring. Because it is, it’s always out there but there are more important things in life. So lets move on, to time!