/* Irrlicht Library Wrapper Created by Nathan Adams Copyright (C) 2007 This software is licensed under the GNU/GPL. This software may not be used for commerical purposes. */ #include #include "IrrLibBase.h" using namespace irr; using namespace core; using namespace scene; using namespace video; using namespace io; using namespace gui; using namespace std; void IrrLibBase::SetDriver(IVideoDriver* driver) //can be overloaded { this->driver = driver; } void IrrLibBase::SetSmgr(ISceneManager* smgr) { this->smgr = smgr; }