calacirya

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/scene.h	Sun Sep 18 11:46:55 2011 +0300
     1.3 @@ -0,0 +1,14 @@
     1.4 +#ifndef SCENE_H_
     1.5 +#define SCENE_H_
     1.6 +
     1.7 +#include "object.h"
     1.8 +#include "prim.h"
     1.9 +#include "kdtree.h"
    1.10 +
    1.11 +struct scene {
    1.12 +	struct object *objlist;
    1.13 +	struct primitive *primlist;
    1.14 +	struct kdtree *tree;
    1.15 +};
    1.16 +
    1.17 +#endif	/* SCENE_H_ */