added gameboard
This commit is contained in:
parent
93d278340e
commit
fa36efa455
68 changed files with 7800 additions and 1 deletions
|
|
@ -0,0 +1,20 @@
|
|||
<script lang="ts">
|
||||
import type { Settings } from "$lib/settings/stores";
|
||||
|
||||
export let id: string;
|
||||
export let settings: Settings;
|
||||
</script>
|
||||
|
||||
<template {id}>
|
||||
<div class="grid grid-cols-2 gap-x-2 gap-y-1 p-2">
|
||||
<p class="font-bold col-span-2 mb-2">Playback Settings</p>
|
||||
<p>autoplay:</p>
|
||||
<p class="text-right">{settings.autoplay}</p>
|
||||
<p>fps:</p>
|
||||
<p class="text-right">{settings.fps}</p>
|
||||
<p>showCoords:</p>
|
||||
<p class="text-right">{settings.showCoords}</p>
|
||||
<p>theme:</p>
|
||||
<p class="text-right">{settings.theme}</p>
|
||||
</div>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue