From 4c318a9aeb62d32eca645710e218881ada2777c3 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Sat, 30 Jul 2022 17:44:58 -0600 Subject: [PATCH] Add the player order and e-stop panels --- web-svelte/src/components/ShipsMoving.svelte | 172 +++++++++++++++++++ 1 file changed, 172 insertions(+) create mode 100644 web-svelte/src/components/ShipsMoving.svelte diff --git a/web-svelte/src/components/ShipsMoving.svelte b/web-svelte/src/components/ShipsMoving.svelte new file mode 100644 index 0000000..4ff66ee --- /dev/null +++ b/web-svelte/src/components/ShipsMoving.svelte @@ -0,0 +1,172 @@ + + + +
+
+
+ {#each sortedPlayers as player (player.id)} +
+
+ +
+
+
+ +
+
+ {player.name} +
+
+
+ {/each} +
+
+
+
+

Emergency Stop!

+

+ Pressing this will stop you from moving +

+
+ +
+
+
+
+ + + \ No newline at end of file