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

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

namespace engine::o3d {

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

}

#endif // O3D_OBJ3D_HPP