/* * Copyright (C) 2018 Tomasz Kramkowski * SPDX-License-Identifier: MIT */ #ifndef VERTEX_H #define VERTEX_H #include "linmath.h" struct vertex { vec3 pos; vec3 norm; vec2 uv; }; #endif // VERTEX_H