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.
273 B · 20 lines
C
at main
1234567891011121314151617181920#pragma once
using namespace std;
class WstringLookup{private: UINT numIDs; unordered_map<wstring, UINT> str2int; vector<wstring> int2str;
public: WstringLookup();
wstring lookup(UINT id); UINT lookup(wstring);
VOID getTable(wstring **lookup, UINT *len);};