libbubulle/tools/read_obj.c

30 lines
352 B
C
Raw Normal View History

2020-06-05 00:17:17 +02:00
/*
tentatives de lecture des OBJ
*/
#include <stdio.h>
#include <stdlib.h>
#include "../bubulles.h"
2020-06-05 01:05:01 +02:00
int try_to_read_an_OBJ_file(char *fname, int notused);
int verbosity;
2020-06-05 00:17:17 +02:00
int main(int argc, char *argv[])
{
int foo;
if (2 != argc) {
bubulles_version(1);
exit(0);
}
2020-06-05 01:05:01 +02:00
verbosity = 0;
2020-06-05 00:17:17 +02:00
2020-06-05 01:05:01 +02:00
foo = try_to_read_an_OBJ_file(argv[1], 0);
2020-06-05 00:17:17 +02:00
return 0;
}