diff --git a/game.js b/game.js new file mode 100644 index 0000000..b3e3ff8 --- /dev/null +++ b/game.js @@ -0,0 +1,15 @@ +async function main() { + var cpuList; + await fetch('./data.json') + .then((response) => response.json()) + .then((json) => cpuList = json); + + +} + +function getRandomCpu() { + +} + + +main(); \ No newline at end of file