diff --git a/src/App.vue b/src/App.vue index 084b7e3..a6a381d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,7 +4,7 @@ import {computed, ref, watch} from "vue" import axios from "axios" import { Notyf } from 'notyf' -import { createSocket, destroySocket } from "./socket/index" +import {createSocket, destroySocket, waveCounter} from "./socket/index" import { createCoyoteSocket, closeCoyoteSocket, @@ -109,6 +109,10 @@ const showSettings = ref(false) const showWarnWindow = ref(false) const warnWindowCountdown = ref(5); +// 测试玩法 +const showTestWindow = ref(false) +const maxHP = ref(1000) + // 连接状态 const gameState = ref(false) @@ -444,7 +448,56 @@ const guardLevelText = computed(() => {
绿色背景方便用色度键抠像,最大 HP 为
++