xxxxxxxxxx
35
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<h1 style="color: red;">[Player1]</h1>
<h1>Move: </h1>
<h2 id="p1MovingCnt">0</h2>
<h1>Score: </h1>
<h2 id="p1ScoreCnt">0</h2>
<br>
<h1 style="color: green">[Player2]</h1>
<h1>Move: </h1>
<h2 id="p2MovingCnt">0</h2>
<h1>Score: </h1>
<h2 id="p2ScoreCnt">0</h2>
<br>
<script src="sketch.js"></script>
<script src="Maze.js"></script>
<script src="Cell.js"></script>
<script src="Player.js"></script>
<script src="MazePathGenerator.js"></script>
<script src="MazePathFinder.js"></script>
<script src="Item.js"></script>
</body>
</html>