aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/obj3d.h
blob: 9f407f94786d0ed2c7ce255e6b1fcf62ced96dfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef O3D_OBJ3D_H
#define O3D_OBJ3D_H

#include <type_traits>
#include "math/tform.h"
#include "o3d/mesh.h"

namespace engine::o3d {

struct Object3D {
    Mesh mesh;
    math::Transform transform;
};

}

#endif // O3D_OBJ3D_H