diff --git a/README.md b/README.md
index a56cfcd..5b29396 100644
--- a/README.md
+++ b/README.md
@@ -40,6 +40,9 @@ You can preview the production build with `npm run preview`.
- [x] Add treasure chest
- [x] Pause game while in the menu
- [x] Container: fix store not updating
+- [ ] Mobile
+ - [ ] Fix icons for left / right rotation
+ - [ ] Add cross to exit menus
- [ ] Cursor
- [x] Click on AI should attack
- [x] Fix cursor bypassing walls
diff --git a/src/components/Game.svelte b/src/components/Game.svelte
index 10f53b6..5a72391 100644
--- a/src/components/Game.svelte
+++ b/src/components/Game.svelte
@@ -14,6 +14,7 @@
import Container from './Menu/Container.svelte';
import Dialog from './Menu/Dialog.svelte';
import Editor from './Editor/Editor.svelte';
+ import Stats from './Menu/Stats.svelte';
$: shaking = $store.screen.shaking;
@@ -37,6 +38,8 @@