Skip to content

Instantly share code, notes, and snippets.

@leonkasovan
Created May 27, 2024 22:24
Show Gist options
  • Save leonkasovan/53613d6263a3b063163c11c598b0dc49 to your computer and use it in GitHub Desktop.
Save leonkasovan/53613d6263a3b063163c11c598b0dc49 to your computer and use it in GitHub Desktop.
// #include <string>
#include <map>
std::map<std::string, int> scrapeId{
{"megadrive",1},
{"snes",4},
{"psx",57},
{"ps2",58}
};
// scrapeId["genesis"]=1;
// scrapeId["megadrive"]=1;
// scrapeId["snes"]=4;
// scrapeId["psx"]=57;
// scrapeId["ps2"]=58;
// scrapeId["atomiswave"]=53;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment