Files
batomorph/include/scene.h
2025-09-23 15:35:26 +01:00

13 lines
142 B
C

#ifndef SCENE_H
#define SCENE_H
#include "obj.h"
typedef struct {
vec3_t sky_colour;
obj_t *objs;
unsigned obj_count;
} scene_t;
#endif