is it possible to use the xml reader before you start the irrlicht device
since i need to load the driver type from the xml file
xml reader before you start the irrlicht device
well the first schouldnt be a problem http://www.ambiera.com/irrxml/
and the second is fairly easy:
and the second is fairly easy:
Code: Select all
IrrlichtDevice* device = createDevice(EDT_NULL);
//and then work with this one until you finished want you wanted to do, e.g. config loading..
device->drop();
device = createDevice(EDT_WHATEVER);
worst programming style ever seen...