diff --git a/src/App.vue b/src/App.vue
index 27cb5d0..974f8ec 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,5 +1,4 @@
-
diff --git a/src/components/Game.vue b/src/components/Game.vue
index 687d8c2..5906bc9 100644
--- a/src/components/Game.vue
+++ b/src/components/Game.vue
@@ -1,3 +1,13 @@
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/components/World.vue b/src/components/World.vue
index acd2c6e..cfc2233 100644
--- a/src/components/World.vue
+++ b/src/components/World.vue
@@ -1,13 +1,12 @@
-
+
+
\ No newline at end of file
diff --git a/src/stores/counter.ts b/src/stores/counter.ts
deleted file mode 100644
index b6757ba..0000000
--- a/src/stores/counter.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { ref, computed } from 'vue'
-import { defineStore } from 'pinia'
-
-export const useCounterStore = defineStore('counter', () => {
- const count = ref(0)
- const doubleCount = computed(() => count.value * 2)
- function increment() {
- count.value++
- }
-
- return { count, doubleCount, increment }
-})