mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
12 lines
226 B
C
12 lines
226 B
C
/* load 3ds file
|
|
*
|
|
* written by Alexander Zaprjagaev
|
|
* frustum@public.tsu.ru
|
|
*/
|
|
|
|
#ifndef __LOAD3DS_H__
|
|
#define __LOAD3DS_H__
|
|
|
|
float *load_3ds(char *name,int *num_vertex);
|
|
|
|
#endif /* __LOAD3DS_H__ */
|