mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
17 lines
451 B
HTML
17 lines
451 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>How to Join</title>
|
|
<script src="box2d.js"></script>
|
|
<script src="common.js"></script>
|
|
<script src="client.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<canvas id="canvas" width="600" height="400" style="background-color:#333333;"></canvas>
|
|
<br/>
|
|
<button onclick="jump(dude)">move dude</button>
|
|
<button onclick="jump(item)">move item</button>
|
|
<button onclick="drop()">drop item</button>
|
|
</body>
|
|
</html>
|