Add inital setup including 'go' command

This commit is contained in:
Andrew Miner
2018-05-26 21:49:53 -06:00
parent bb665bca3c
commit 4563482d17
7 changed files with 542 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<html>
<link rel="stylesheet" type="text/css" href="styles.css"/>
<body>
<div class="log">
<p class="log-text"></p>
</div>
<input class="entry" type="text"></input>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://coffeescript.org/v2/browser-compiler/coffeescript.js"></script>
<script src="game_engine.coffee" type="text/coffeescript"></script>
<script src="story.coffee" type="text/coffeescript"></script>
<script src="run_game.coffee" type="text/coffeescript"></script>
</body>
</html>