calacirya

view src/scene.h @ 3:71a3eb026e80

writing the scene file spec
author John Tsiombikas <nuclear@mutantstargoat.com>
date Thu, 22 Sep 2011 02:23:50 +0300
parents
children
line source
1 #ifndef SCENE_H_
2 #define SCENE_H_
4 #include "object.h"
5 #include "prim.h"
6 #include "kdtree.h"
8 struct scene {
9 struct object *objlist;
10 struct primitive *primlist;
11 struct kdtree *tree;
12 };
14 #endif /* SCENE_H_ */