Skip to content
Snippets Groups Projects
Commit 75b8c4ff authored by Jonas Zohren's avatar Jonas Zohren :speech_balloon:
Browse files

Add save game stub

parent 1466f061
No related branches found
No related tags found
No related merge requests found
Pipeline #17077 passed
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
import { fetchDialogSet } from "./utils"; import { fetchDialogSet } from "./utils";
import Debugger from "./Debugger.svelte"; import Debugger from "./Debugger.svelte";
import type { Dialog } from "./types"; import type { Dialog } from "./types";
import SavingComponent from "./SavingComponent.svelte";
const dialogSetPromise = fetchDialogSet(); const dialogSetPromise = fetchDialogSet();
let currentDialog: Dialog; let currentDialog: Dialog;
...@@ -14,6 +15,7 @@ ...@@ -14,6 +15,7 @@
<br /> <br />
<Debugger {dialogSet} bind:currentDialog /> <Debugger {dialogSet} bind:currentDialog />
<SavingComponent/>
{:catch _error} {:catch _error}
<h3>Oh no :(</h3> <h3>Oh no :(</h3>
<p> <p>
......
<div>
<input type="text" placeholder="Your Pretix order code" maxlength="5" minlength="5" >
<button style="width: 25rem;"
>💾 Save game (not implemented yet)</button
>
</div>
<style>
div {
border: 1px solid;
padding: 10px;
padding-bottom: 0px;
margin: 5px;
}
</style>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment