13 lines
207 B
C
13 lines
207 B
C
#ifndef MONS_CAMERA_H
|
|
#define MONS_CAMERA_H
|
|
|
|
#include "projection.h"
|
|
#include "transform.h"
|
|
|
|
typedef struct mons_camera {
|
|
mons_transform transform;
|
|
mons_projection projection;
|
|
} mons_camera;
|
|
|
|
#endif
|