tinygi

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