initial commit

This commit is contained in:
Maik Hagenbruch
2020-03-26 13:33:17 +01:00
commit 558297e42d
7 changed files with 320 additions and 0 deletions

21
index.html Normal file
View File

@@ -0,0 +1,21 @@
<html>
<head>
<title>Shogun</title>
<link rel="stylesheet" href="css/styles.css">
<script type="text/javascript" src="js/game.js"></script>
</head>
<body>
<div id="site">
<h2>S H O G U N</h2>
<div id="gamePanel">
<script type="text/javascript">
var game = new Game();
game.drawGamePanel(8,8,60);
game.setPlayingFigures();
game.calculateMovesForPlayers();
game.showPossibleMoves();
</script>
</div>
</div>
</body>
</html>