blob: 27c31eba1a15b632d5df94a1953f9a55714f73e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef O3D_CAMERA_H
#define O3D_CAMERA_H
#include "math/tform.h"
namespace engine::o3d {
struct Camera {
engine::math::Transform transform;
};
}
#endif // O3D_CAMERA_H
|