Scenes have a Camera object

This commit is contained in:
Eryn Wells 2013-09-06 19:01:15 -07:00
parent 6d253aab10
commit 9508b01e10
2 changed files with 4 additions and 0 deletions

View file

@ -10,11 +10,13 @@
#include <stdio.h>
#include "basics.h"
#include "camera.h"
typedef struct _Scene
{
int height, width; /* Pixel dimensions. */
Camera *camera;
} Scene;