/* Irrlicht Library Wrapper Created by: Nathan Adams Copyright (C) 2008 This software is licensed under the GNU/GPL. This software may not be used for commerical purposes. */ #ifndef IRRDEVICES_H #define IRRDEVICES_H class IrrDevices { public: static irr::video::IVideoDriver* getDriver(); static irr::scene::ISceneManager* getSmgr(); static irr::IrrlichtDevice* getDevice(); static irr::video::IVideoDriver* driver; static irr::scene::ISceneManager* smgr; static irr::IrrlichtDevice *device; }; #endif