| 123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <!-- Web tab icon -->
- <link rel="icon" href="./../../../assets/gs_logo.png">
- <!-- Bootstrap core CSS -->
- <link href="./../../../assets/dist/css/bootstrap.min.css" rel="stylesheet">
- <!-- Examlpes CSS -->
- <link href="./../../examples.css" rel="stylesheet">
- </head>
- <body class="body">
- <!-- Create the canvas that the C++ code will draw into -->
- <canvas id="canvas" oncontextmenu="event.preventDefault()" class="canvas"></canvas>
- <!-- Allow the C++ to access the canvas element -->
- <script type='text/javascript'>
- var Module = {
- canvas: (function() { return document.getElementById('canvas'); })()
- };
- </script>
-
- <!-- Add the javascript glue code (index.js) as generated by Emscripten -->
- <script src="App.js"></script>
-
- </body>
- </html>
|