Skip to content

Commit

Permalink
now with an exported game
Browse files Browse the repository at this point in the history
  • Loading branch information
wylie committed Nov 8, 2024
1 parent 123a378 commit ac60e27
Show file tree
Hide file tree
Showing 7 changed files with 786 additions and 12 deletions.
7 changes: 0 additions & 7 deletions Game.ink

This file was deleted.

1 change: 1 addition & 0 deletions Game/Game.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions Game/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">

<title>Game</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="stylesheet" href="style.css">

</head>

<body>

<div class="outerContainer">
<h3 class="written-in-ink"><a href="https://www.inklestudios.com/ink">WRITTEN IN INK</a></h3>

<div id="controls" class="buttons">
<a id="rewind" title="Restart story from beginning">restart</a>
<a id="save" title="Save progress">save</a>
<a id="reload" title="Reload from save point">load</a>
<a id="theme-switch" title="Switch theme">theme</a>
</div>

<div id="story" class="container">
<div class="header">
<h1>Game</h1>
<h2 class="byline"></h2>
</div>
</div>
</div>

<script src="ink.js"></script>
<script src="Game.js"></script>
<script src="main.js"></script>
</body>
</html>
2 changes: 2 additions & 0 deletions Game/ink.js

Large diffs are not rendered by default.

Loading

0 comments on commit ac60e27

Please sign in to comment.