Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
286 B · 14 lines
C
at main
1234567891011121314#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);};