Skip to content

Commit

Permalink
added simon game
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Westover <[email protected]>
  • Loading branch information
scottwestover committed Jun 7, 2024
1 parent aa3fdf0 commit 84b800d
Show file tree
Hide file tree
Showing 6 changed files with 6,037 additions and 0 deletions.
Binary file added games/simon/assets/audio/simonSound1.mp3
Binary file not shown.
Binary file added games/simon/assets/audio/simonSound2.mp3
Binary file not shown.
Binary file added games/simon/assets/audio/simonSound3.mp3
Binary file not shown.
Binary file added games/simon/assets/audio/simonSound4.mp3
Binary file not shown.
6,009 changes: 6,009 additions & 0 deletions games/simon/assets/js/index-f4970046.js

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions games/simon/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phaser 3 - Simon</title>
<style>
html,
body,
.container {
margin: 0px;
height: 100vh;
width: 100vw;
overflow: hidden;
background: #d7d7d7;
display: flex;
flex-direction: column;
align-items: center;
}
</style>
<script type="module" crossorigin src="/assets/js/index-f4970046.js"></script>
</head>
<body>
<div class="container" id="game-container">
<h1>Phaser 3 - Simon</h1>
</div>

</body>
</html>

0 comments on commit 84b800d

Please sign in to comment.