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.
359 B · 23 lines
C++
at main
1234567891011121314151617181920212223#include "stdafx.h"#include "TexOffs.h"#include "Model.h"
Model::Model() { riding = false; young=true; texWidth=64; texHeight=32;}
void Model::setMapTex(wstring id, int x, int y) { mappedTexOffs[id]=new TexOffs(x, y);}
TexOffs *Model::getMapTex(wstring id) { // 4J-PB - assuming there will always be this one return mappedTexOffs[id];}