/* objloader.c * Created by Jon Mayo on 7/26/06. * This software is PUBLIC DOMAIN as of July 2006. No copyright is claimed. * - Jon Mayo */ /* a small library to load a subset of the Wavefront OBJ model format */ #ifndef OBJLOADER_H #define OBJLOADER_H #include "model.h" struct model *load_obj(const char *filename); int save_obj(const char *filename, struct model *m); #endif