#ifndef VERTEX_H
#define VERTEX_H

#include "gaming-core/math/Vector.h"

struct Vertex final {
    Vertex();
    Vertex(const Vector3& position, const Vector2& texture);

    Vector3 position;
    Vector2 texture;
};

#endif