tinygi
diff src/object.h @ 0:16fdca2a1ef5
initial tinygi commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 19 Jul 2015 18:30:29 +0300 |
parents | |
children | bc64090fe3d1 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/object.h Sun Jul 19 18:30:29 2015 +0300 1.3 @@ -0,0 +1,13 @@ 1.4 +#ifndef TGI_OBJECT_H_ 1.5 +#define TGI_OBJECT_H_ 1.6 + 1.7 +#include "tinygi.h" 1.8 + 1.9 +struct tgi_object { 1.10 + char *name; 1.11 + struct tgi_shape *shape; 1.12 + 1.13 + struct tgi_object *next; /* for linking it into various lists */ 1.14 +}; 1.15 + 1.16 +#endif /* TGI_OBJECT_H_ */