/* 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 IRR3D_H #define IRR3D_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 "Irr3D.h" //#include "Irr2D.h" This is a 3D class not 2D /* However due to Irrlciht's nature mixing 2D with 3D is possible */ //Start class class Irr3D { private: irr::video::IVideoDriver* driver; irr::scene::ISceneManager* smgr; public: IrrSphere Sphere; Irr3D::Irr3D(); Irr3D::~Irr3D(); void Irr3D::SetDriver(irr::video::IVideoDriver* driver); void Irr3D::SetSmgr(irr::scene::ISceneManager* smgr); }; #endif