is it possible to access the filesystem via Irrlicht without setting up a device?
This is what I have atm:
Code: Select all
irr::video::E_DRIVER_TYPE driverType = irr::driverChoiceConsole();
if (driverType == irr::video::EDT_COUNT) return 1;
irr::IrrlichtDevice *device = irr::createDevice(driverType, irr::core::dimension2d<irr::u32>(640,480), 16, false);
if (!device) return 1;
device->getFileSystem();
So I imagined sth like a single call to 'irr::io::functionname()' which returns
a pointer to an irr::io::IFileSystem object.