blob: 7efe44f093edb65541ed6e47d5ef91f8a5381f51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef PKE_STATIC_PLANE_HPP
#define PKE_STATIC_PLANE_HPP
#include "vendor-glm-include.hpp"
struct IntrinsicShapePlane {
glm::vec2 vert[4];
glm::vec2 uv[4];
uint16_t index[6];
};
extern IntrinsicShapePlane pkeIntrinsicsPlane;
#endif /* PKE_STATIC_PLANE_HPP */
|