//Vertex.h
#pragma once
#include "Math.h"

struct Vertex 
{
	Vector3 pos;
	Vector3 color;
	Vector2 uv;
};