summaryrefslogtreecommitdiff
path: root/src/static-cube.hpp
blob: c06baa69c34a2d2280310c7f2fd20615085bd4a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PKE_STATIC_CUBE_HPP
#define PKE_STATIC_CUBE_HPP

#include "vendor-glm-include.hpp"

struct IntrinsicShapeCube {
	glm::vec3 vert[8];
	glm::vec3 norm[8];
	glm::vec2 uv[8];
	uint16_t index[36];
};

extern IntrinsicShapeCube pkeIntrinsicsCube;

#endif /* PKE_STATIC_CUBE_HPP */