calacirya

view src/scene.h @ 0:df9e0bc7685a

starting calacirya project
author John Tsiombikas <nuclear@mutantstargoat.com>
date Sun, 18 Sep 2011 11:46:55 +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_ */