the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 12 lines 142 B view raw
1#pragma once 2using namespace std; 3 4class Hasher 5{ 6private: 7 wstring salt; 8 9public: 10 Hasher(wstring &salt); 11 wstring getHash(wstring &name); 12};