chuck.js/index.html
2012-06-02 18:24:34 +02:00

15 lines
734 B
HTML
Executable file

<html>
<head>
<title>Box2dWeb Demo</title>
</head>
<body onload="Game.Main();">
<canvas id="canvas" width="600" height="400" style="background-color:#333333;"></canvas>
</body>
<script type="text/javascript" src="lib/Box2d/Box2dWeb-2.1.a.3.js"></script>
<script type="text/javascript" src="lib/Config/Setup.js"></script>
<script type="text/javascript" src="lib/Game/Physics/Engine.js"></script>
<script type="text/javascript" src="lib/Game/Processor.js"></script>
<script type="text/javascript" src="lib/Game/Physics/Doll.js"></script>
<script type="text/javascript" src="lib/Game/Player.js"></script>
<script type="text/javascript" src="lib/Game/Main.js"></script>
</html>