// // vertex.h // graphics // // Created by Sam Jaffe on 5/20/19. // Copyright © 2019 Sam Jaffe. All rights reserved. // #pragma once #include "game/math/math_fwd.hpp" #include "vector/vector.hpp" namespace graphics { struct vertex { math::vec2 position, texture_coords; math::rgba color; }; }