Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | /* 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 IRRCOLOR_H #define IRRCOLOR_H #include <iostream> #include <strings.h> #include "irrlicht.h" //#include "IrrLib.h" class IrrColor { private : //who knows? public : void IrrColor::test(); irr::video::SColor IrrColor::returnColor(std::string color); }; #endif |