mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-01 12:14:59 +00:00
15 lines
305 B
C++
15 lines
305 B
C++
#pragma once
|
|
#include "../../Minecraft.World/Util/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);
|
|
};
|