summaryrefslogtreecommitdiff
path: root/src/scenes/hello_kitty.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/scenes/hello_kitty.js')
-rw-r--r--src/scenes/hello_kitty.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/scenes/hello_kitty.js b/src/scenes/hello_kitty.js
new file mode 100644
index 0000000..f7b5c8c
--- /dev/null
+++ b/src/scenes/hello_kitty.js
@@ -0,0 +1,17 @@
+import { Engine } from "../engine.js"
+import { MUSIC } from "../assets.js"
+import { HelloKittyBackground } from "../entities/hello_kitty_background.js"
+import { HelloKitty } from "../entities/hello_kitty.js"
+
+export function start() {
+ Engine.radio.playMusic(MUSIC.HELL)
+ new HelloKittyBackground()
+ new HelloKitty()
+}
+
+
+export function update() {
+}
+
+export function draw() {
+}