Create scene data structure

This commit is contained in:
Camden Dixie O'Brien
2025-09-23 15:35:26 +01:00
parent 30472cd7f6
commit 6c832324e2
4 changed files with 34 additions and 20 deletions

12
include/scene.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef SCENE_H
#define SCENE_H
#include "obj.h"
typedef struct {
vec3_t sky_colour;
obj_t *objs;
unsigned obj_count;
} scene_t;
#endif