the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 10 lines 232 B view raw
1#include "stdafx.h" 2#include "SimpleIcon.h" 3 4SimpleIcon::SimpleIcon(const wstring &name, const wstring &filename, float U0, float V0, float U1, float V1) : StitchedTexture(name, filename) 5{ 6 u0 = U0; 7 u1 = U1; 8 v0 = V0; 9 v1 = V1; 10}