Created
May 27, 2024 22:24
-
-
Save leonkasovan/53613d6263a3b063163c11c598b0dc49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// #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