Vertex.h 219 B

1234567891011121314
  1. #ifndef VERTEX_H
  2. #define VERTEX_H
  3. #include "common/math/Vector.h"
  4. struct Vertex final {
  5. Vertex();
  6. Vertex(const Vector3& position, const Vector2& texture);
  7. Vector3 position;
  8. Vector2 texture;
  9. };
  10. #endif