/* Irrlicht Library Wrapper Created by: Nathan Adams Denzel Morris Copyright (C) 2007 This software is licensed under the GNU/GPL. This software may not be used for commerical purposes. */ #include #include #include #include "IrrLib.h" //Libraries we create go here //#include "IrrSphere.h" #include "IrrColor.h" #include "IrrSprite.h" //#include "Irr2D.h" using namespace irr; using namespace core; using namespace scene; using namespace video; using namespace io; using namespace gui; using namespace std; IrrSprite::IrrSprite() { //do stuff } IrrSprite::~IrrSprite() { //delete stuff } void IrrSprite::SetDriver(irr::video::IVideoDriver* driver) { this->driver = driver; } void IrrSprite::SetSmgr(irr::scene::ISceneManager* smgr) { this->smgr = smgr; }