13 lines
148 B
C
13 lines
148 B
C
#ifndef SCENE_H
|
|
#define SCENE_H
|
|
|
|
#include "obj.h"
|
|
|
|
typedef struct {
|
|
vec3_t sky_pos, sky_neg;
|
|
obj_t *objs;
|
|
unsigned obj_count;
|
|
} scene_t;
|
|
|
|
#endif
|