/* 3dsloader.h : a small library to load a subset of the 3DS model format */ /* This software is PUBLIC DOMAIN as of January 2006. No copyright is claimed. * - Jon Mayo */ #ifndef THREEDSLOADER_H #define THREEDSLOADER_H #include "model.h" struct model *load_3ds(const char *filename); #endif