/* 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. */ #ifndef IRRSPRITE_H #define IRRSPRITE_H /* We should include some basic functions */ #include /* include strings */ #include /* We have to include Irrlichts libs */ #include //#include "IrrSphere.h" #include "IrrColor.h" //#include "Irr2D.h" //#include "IrrSprite.h" //Start class class IrrSprite { private: irr::video::IVideoDriver* driver; irr::scene::ISceneManager* smgr; public: IrrSprite::IrrSprite(); IrrSprite::~IrrSprite(); void IrrSprite::SetDriver(irr::video::IVideoDriver* driver); void IrrSprite::SetSmgr(irr::scene::ISceneManager* smgr); // I forgot a semicolon here....and it wasn't compling //Thats 1 bad thing about OOP if there is an error you don't know where the @#$@# the problem is! }; #endif