00001 // 3dsread.h 00002 // 00003 // Copyright (C) 2000, Chris Laurel <claurel@shatters.net> 00004 // 00005 // This program is free software; you can redistribute it and/or 00006 // modify it under the terms of the GNU General Public License 00007 // as published by the Free Software Foundation; either version 2 00008 // of the License, or (at your option) any later version. 00009 00010 #ifndef _3DSREAD_H_ 00011 #define _3DSREAD_H_ 00012 00013 #include <iostream> 00014 #include <fstream> 00015 #include <string> 00016 #include <cel3ds/3dsmodel.h> 00017 00018 M3DScene* Read3DSFile(std::ifstream& in); 00019 M3DScene* Read3DSFile(const std::string& filename); 00020 00021 #endif // _3DSREAD_H_
1.4.1