game scenarios

This commit is contained in:
2025-03-14 19:13:52 +02:00
parent 96869a62e4
commit 6aad752ce3
13 changed files with 396 additions and 127 deletions
@@ -0,0 +1,12 @@
<template>
<line :x1="x" :y1="y" :x2="x" :y2="y" class="annotation point"></line>
</template>
<script>
export default {
props:{
x: Number,
y: Number
}
}
</script>