tinygi

view 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 source
1 #ifndef TGI_OBJECT_H_
2 #define TGI_OBJECT_H_
4 #include "tinygi.h"
6 struct tgi_object {
7 char *name;
8 struct tgi_shape *shape;
10 struct tgi_object *next; /* for linking it into various lists */
11 };
13 #endif /* TGI_OBJECT_H_ */