the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 11 lines 313 B view raw
1#pragma once 2using namespace std; 3 4#include "StitchedTexture.h" 5 6// 4J Added this class to store the uv data that we have pre-calculated and loaded from a file 7class SimpleIcon : public StitchedTexture 8{ 9public: 10 SimpleIcon(const wstring &name, const wstring &filename, float u0, float v0, float u1, float v1); 11};