summaryrefslogtreecommitdiff
path: root/src/scenes/game.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/scenes/game.js')
-rw-r--r--src/scenes/game.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/scenes/game.js b/src/scenes/game.js
new file mode 100644
index 0000000..1640aa5
--- /dev/null
+++ b/src/scenes/game.js
@@ -0,0 +1,13 @@
+import { Engine } from "../engine.js"
+import { MUSIC } from "../assets.js"
+
+export function start() {
+ Engine.playMusic(MUSIC.SOLGRYN)
+}
+
+
+export function update() {
+}
+
+export function draw() {
+}