/* 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. */ #ifndef IRRLIBBASE_H #define IRRLIBBASE_H /* We should include some basic functions */ #include /* include strings */ #include /* We have to include Irrlichts libs */ #include class IrrLibBase { protected: irr::video::IVideoDriver* driver; irr::scene::ISceneManager* smgr; public: void IrrLibBase::SetDriver(irr::video::IVideoDriver* driver); void IrrLibBase::SetSmgr(irr::scene::ISceneManager* smgr); }; #endif