Vertex.cpp 166 B

1234567
  1. #include "client/rendering/Vertex.h"
  2. Vertex::Vertex() {
  3. }
  4. Vertex::Vertex(const Vector3& position, const Vector2& texture) : position(position), texture(texture) {
  5. }