MinecraftConsoles/Minecraft.Client/Vertex.h
Brayden M df180fabd2 refactor: Fix include paths for compatibility
MSVC allows backslashes and case-insensitive include paths, which causes
build failures on other compilers. This commit:
- Converts all include backslashes to forward slashes.
- Fixes capitalization mismatches to match the actual filesystem.
2026-03-14 00:42:04 -05:00

14 lines
286 B
C++

#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);
};