-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex-dev.html
More file actions
15 lines (14 loc) · 763 Bytes
/
index-dev.html
File metadata and controls
15 lines (14 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<title>Simple Scala.js HTML5 Canvas game</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<a href="http://www.lostdecadegames.com/how-to-make-a-simple-html5-canvas-game/">Simple HTML5 Canvas game</a> ported to <a href="http://www.scala-js.org/">ScalaJS</a>. The source code of this game is available on <a href="https://github.com/vmunier/scalajs-simple-canvas-game">GitHub</a>.
<!-- Include JavaScript dependencies -->
<script type="text/javascript" src="./target/scala-2.12/simplegame-jsdeps.js"></script>
<!-- Include Scala.js compiled code -->
<script type="text/javascript" src="./target/scala-2.12/simplegame-fastopt.js"></script>
</body>
</html>