1
0
forked from sent/waves
waves/public/assets/g/gba/require.html
2025-04-09 17:11:14 -05:00

31 lines
730 B
HTML

<!--
GBA ONLINE; GBA.JS.ORG; "Online GameBoy Advance Emulator"
Copyright (C) 2021-present AYVACS
Licensed under the MIT License (view LICENSE.md for more information)
-->
<!DOCTYPE html>
<html lang="en">
<head>
<script src="/js/all.min.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
fetch('assets/user_data/GamesList.json')
.then(response => response.json())
.then(jsonResponse => console.log(jsonResponse))
// outputs a javascript object from the parsed json
</script>
</body>
</html>