mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 10:53:41 +00:00
14 lines
305 B
C++
14 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);
|
|
}; |