This commit is contained in:
2021-11-03 12:08:40 +01:00
parent 8013dd4a17
commit 36bb9264b3
5 changed files with 6454 additions and 0 deletions

11
src/game/index.html Normal file
View File

@@ -0,0 +1,11 @@
<html>
<head>
<title>Assassin bug</title>
</head>
<body>
<h1>Assassin bug</h1>
<div id="output-area"></div>
<input type="text" id="input-area" placeholder="Type command" />
<script src="game.js"></script>
</body>
</html>

1
src/game/index.js Normal file
View File

@@ -0,0 +1 @@
document.getElementById('output-area').appendChild(document.createTextNode("Hi I'm javascript and I approve this message"));