aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Vertex.h
blob: c52f499f1fffa0a3b298f67225d20fbcc0cefec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "..\Minecraft.World\Vec3.h"

class Vertex
{
public:
	Vec3 *pos;
	float u,v;
public:
	Vertex(float x, float y, float z, float u, float v);
    Vertex *remap(float u, float v);
    Vertex(Vertex *vertex, float u, float v);
    Vertex(Vec3 *pos, float u, float v);
};